-
-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scripts documentation is absent #32
Comments
find the syntax overhere: {
"meta": {
"description": "My script",
"repeat": times the script will repeat (default 1),
"enableLed": true (default) | false,
"savePcap": true (default) | false
},
"stages": {
"scan": {
"type": "ap" | "station",
"timeout": seconds,
"channel": 1-11
},
"select": {
"type": "ap" | "station" | "ssid",
"filter": "all" | "contains -f '{SSID fragment}' or equals '{SSID}' or ...",
"indexes": [0, 1, 2, 3...],
},
"deauth": {
"timeout": seconds
},
"probe": {
"timeout": seconds
},
"sniffRaw": {
"timeout": seconds
},
"sniffBeacon": {
"timeout": seconds
},
"sniffDeauth": {
"timeout": seconds
},
"sniffEsp": {
"timeout": seconds
},
"sniffPmkid": {
"forceDeauth": true (default) | false,
"channel": 1-11,
"timeout": seconds
},
"sniffPwn": {
"timeout": seconds
},
"beaconList": {
"ssids": [
"SSID 1",
"SSID 2",
"SSID 3"
],
"generate": number of random SSIDs that will be generated,
"timeout": seconds
}
"beaconAp": {
"timeout": seconds
}
"exec": {
"command": Command (eg: "clearlist -a")
}
"delay": {
"timeout": seconds
}
}
}
Note: It is possible to inform "stages" as an array, allowing ordering and repetition of stages of the same type:
"stages": [
{
"beaconList": { "ssids": ["SSID 1", "SSID 2"] }
},
{
"beaconList": { "generate": 4 }
},
]
} |
Thank You for your help and for the app! |
Is there a way to evil portal html templates in a script? I can't get it to work sadly. i have a script like this:
the template works and is tested. |
Change the sethtml command to sethtmlstr as you noted, then the next "command" should be the full html contents. (I don't know whether this would work in a script, but try it out!) |
I'll give it a try. Would be nice if parsing a file could be a feature in code. Shouldn't be that hard to parse it too. so the parser would look for $file and load the file in brackets as a string. ( as some sort of function ) I think that would be a very nice addition and open up some more possibilities. |
The App can use some kind of scripts.
From v0.3.4 changelog:
" Scripts are here! Thanks to [@tcpassos 2]
...
The scripts are saved in the “apps_data/marauder/scripts” folder as JSON files."
Where could one find the documentation or examples of the scripts?
The text was updated successfully, but these errors were encountered: