Skip to content

Commit 8b4e001

Browse files
committed
update readme
1 parent c470aa8 commit 8b4e001

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A plugin that allows you execute python and get return to BurpSuite.
44
# Intro
55
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.
66

7-
And, sometimes, you may just want some customized function to modify part of the traffic, all you need is just `Burpy Main`.
7+
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.
88

99
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.
1010

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

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

4444
```python
4545
class Burpy:
@@ -58,7 +58,7 @@ class Burpy:
5858

5959
def _test(self, param):
6060
'''
61-
function with `_`, `__`, `main` as starting letter will be ignored for context menu
61+
function with `_`, `__`as starting letter will be ignored for context menu
6262
6363
'''
6464
# param = magic(param)

0 commit comments

Comments
 (0)