Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
04f2a4e
added a .gitignore for the project
ahanel13 Jul 30, 2023
9c364d3
updated .gitignore
ahanel13 Jul 30, 2023
556293d
updated gitignore
ahanel13 Jul 30, 2023
3da8e84
started spliting the classes apart, dealing with recursive importing …
ahanel13 Jul 30, 2023
e8314ce
Updated import libs
ahanel13 Jul 31, 2023
d655796
Sorted out of the the dependencies issues.
ahanel13 Jul 31, 2023
538a49e
Removed unnecessary build file for a jar, burp loads py file directly.
ahanel13 Jul 31, 2023
995fc36
Migreated to the use of the constants class
ahanel13 Jul 31, 2023
96752cd
updated exiftool directory back to bin due to binaries_to_check varia…
ahanel13 Jul 31, 2023
954f02c
Updated class importing
ahanel13 Jul 31, 2023
141ad47
added html.disable required by burp to render html
ahanel13 Jul 31, 2023
56ab2e4
remvoed duplicate imports
ahanel13 Jul 31, 2023
56ea103
Removed more duplicate imports
ahanel13 Jul 31, 2023
275a656
Add imports to ImageHelper.
ahanel13 Jul 31, 2023
2097099
Removed __init__.py from root directory since the main file isn't bei…
ahanel13 Aug 1, 2023
f11f3f7
Created a directory/module called checks.
ahanel13 Aug 1, 2023
392ecf4
Updated init and create_copy functions of CustomScanIssue
ahanel13 Aug 1, 2023
2e39ea4
Added imports and an additional variable to Constant class
ahanel13 Aug 1, 2023
9071a35
Updated import path of CustomScannIssue
ahanel13 Aug 1, 2023
214f136
Migrated to using the new Constant value for FILE_START
ahanel13 Aug 1, 2023
75964ef
Started seperating the send methods into their own class
ahanel13 Aug 1, 2023
45baff9
Added the rest of the Code for the _make_http_request.
ahanel13 Aug 2, 2023
8702710
Moved Downloader classes to their own file and updated imports
ahanel13 Aug 2, 2023
4cb8ef5
Moved Collaborator classes into their own file.
ahanel13 Aug 2, 2023
01d645a
Moved structs out of Uploadscanner into constants to make breaking up…
ahanel13 Aug 2, 2023
d7473f2
Change globals_write_lock to be a global variable.
ahanel13 Aug 2, 2023
b897ce0
Moved the globals_write_lock back to a class variable.
ahanel13 Aug 3, 2023
66db926
added the burp_extender instance as a init parameter ti Send() in ord…
ahanel13 Aug 3, 2023
702ed1e
Completed moving PHP RCE checks into it's own class
ahanel13 Aug 3, 2023
d5c47fa
Removed debugging logs
ahanel13 Aug 3, 2023
60a1ce7
Updated class name to Sender
ahanel13 Aug 3, 2023
f22ff6f
Migrated all uses of _send_simple to Sender.simple()
ahanel13 Aug 3, 2023
f01608d
Moved send_get_request into Sender class
ahanel13 Aug 3, 2023
e141bbd
Moved _send_collaborator to Sender class
ahanel13 Aug 3, 2023
45f6aaa
updated Uploadscanner to use the Attacks class.
ahanel13 Aug 3, 2023
b0384fe
Moved XSS checks into its own class
ahanel13 Aug 3, 2023
3c8074a
Moved the generic xxe checks to its own class
ahanel13 Aug 14, 2023
c650dc0
Moved do_checks into it's own class
ahanel13 Aug 15, 2023
326d2d6
Updated variable name to burp_extender to better hold context
ahanel13 Aug 15, 2023
336b941
Fixed import errors related to moving do_checks. Created an additiona…
ahanel13 Aug 17, 2023
bc37f2a
Added pycharm files to git
ahanel13 Aug 29, 2023
cef99d0
Merge pull request #1 from ahanel13/breakApartUploadScanner
ahanel13 Dec 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode
.jython_chache/
*$py.class
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/UpdatedBurpUploadScanner.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added .jython_cache/packages/jython.pkc
Binary file not shown.
Binary file added .jython_cache/packages/packages.idx
Binary file not shown.
Loading