Skip to content

Instantly share code, notes, and snippets.

@TheRealJunior
Created February 8, 2020 09:30
Show Gist options
  • Save TheRealJunior/061b4179ffd932c992a2edb6cae292a6 to your computer and use it in GitHub Desktop.
Save TheRealJunior/061b4179ffd932c992a2edb6cae292a6 to your computer and use it in GitHub Desktop.
vscode frida python snippet
{
// Place your snippets for python here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Frida Boiler Plate": {
"prefix": "fridapython",
"body": [
"import frida, sys, time\r\n\r\ndef on_message(message, data):\r\n if message['type'] == 'send':\r\n print(\"[*] {0}\".format(message['payload']))\r\n else:\r\n print(message)\r\n\r\nwith open(\"filename.js\", \"r\") as f: jscode = f.read()\r\n\r\nprocess = frida.get_usb_device().attach('com.example')\r\nscript = process.create_script(jscode)\r\nscript.on('message', on_message)\r\nprint('[*] Running Script')\r\nscript.load()\r\n\r\nwhile True:\r\n time.sleep(10)"
],
"description": "create frida python script"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment