Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-m0nst3r committed Jun 30, 2020
1 parent c470aa8 commit 8b4e001
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A plugin that allows you execute python and get return to BurpSuite.
# Intro
During Android APP pentesting, I found it very often that the traffic is encrypted and/or signed, it would be great to have a plugin so we can write python to enc/dec/sign.

And, sometimes, you may just want some customized function to modify part of the traffic, all you need is just `Burpy Main`.
And, sometimes, you may just want some customized function to modify part of the traffic, all you need is just write a python script and directly call it from within burpsuite.

If you wanna take advantage of the intruder with payloads need to be encrypted, you need to `Enable Processor`, and write your own payload processor function.

Expand Down Expand Up @@ -39,7 +39,7 @@ m0nst3r(Song Xinlei) @ CFCA
# the python script sample
Just write your own logic to modify the header/body as your need, and return the header/body, just that simple!

All functions will be extracted to generate context menu, except thos with `_`, `__`, `main` prefix!
All functions will be extracted to generate context menu, except thos with `_`, `__`prefix!

```python
class Burpy:
Expand All @@ -58,7 +58,7 @@ class Burpy:

def _test(self, param):
'''
function with `_`, `__`, `main` as starting letter will be ignored for context menu
function with `_`, `__`as starting letter will be ignored for context menu
'''
# param = magic(param)
Expand Down

0 comments on commit 8b4e001

Please sign in to comment.