├── .github └── CODEOWNERS ├── .gitignore ├── CODEOWNERS ├── LICENSE.md ├── LegacyPythonBurpFeed ├── README.md ├── bfeed-threaded.py ├── bfeed.py └── bfeedDev.py ├── LogoBurpFeed.png ├── README.md ├── go.mod ├── main.go └── user-agents.txt /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @zephrfish 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LegacyPythonBurpFeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/LegacyPythonBurpFeed/README.md -------------------------------------------------------------------------------- /LegacyPythonBurpFeed/bfeed-threaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/LegacyPythonBurpFeed/bfeed-threaded.py -------------------------------------------------------------------------------- /LegacyPythonBurpFeed/bfeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/LegacyPythonBurpFeed/bfeed.py -------------------------------------------------------------------------------- /LegacyPythonBurpFeed/bfeedDev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/LegacyPythonBurpFeed/bfeedDev.py -------------------------------------------------------------------------------- /LogoBurpFeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/LogoBurpFeed.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ZephrFish/BurpFeed 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/main.go -------------------------------------------------------------------------------- /user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZephrFish/BurpFeed/HEAD/user-agents.txt --------------------------------------------------------------------------------