You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ A plugin that allows you execute python and get return to BurpSuite.
4
4
# Intro
5
5
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.
6
6
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.
8
8
9
9
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.
10
10
@@ -39,7 +39,7 @@ m0nst3r(Song Xinlei) @ CFCA
39
39
# the python script sample
40
40
Just write your own logic to modify the header/body as your need, and return the header/body, just that simple!
41
41
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!
43
43
44
44
```python
45
45
classBurpy:
@@ -58,7 +58,7 @@ class Burpy:
58
58
59
59
def_test(self, param):
60
60
'''
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
0 commit comments