├── .gitignore ├── Makefile ├── README ├── src ├── HttpClient.py ├── HttpParser.py ├── logger.py ├── rawarp.py ├── rawethernet.py ├── rawhttpget.py ├── rawip.py ├── rawsocket.py ├── rawtcp.py ├── rawurllib.py └── utils.py └── test └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | *ropeproject/ 4 | *.pyc 5 | *.log 6 | rawhttpget 7 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/README -------------------------------------------------------------------------------- /src/HttpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/HttpClient.py -------------------------------------------------------------------------------- /src/HttpParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/HttpParser.py -------------------------------------------------------------------------------- /src/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/logger.py -------------------------------------------------------------------------------- /src/rawarp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawarp.py -------------------------------------------------------------------------------- /src/rawethernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawethernet.py -------------------------------------------------------------------------------- /src/rawhttpget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawhttpget.py -------------------------------------------------------------------------------- /src/rawip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawip.py -------------------------------------------------------------------------------- /src/rawsocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawsocket.py -------------------------------------------------------------------------------- /src/rawtcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawtcp.py -------------------------------------------------------------------------------- /src/rawurllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/rawurllib.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/src/utils.py -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YingquanYuan/raw_sockets/HEAD/test/test.sh --------------------------------------------------------------------------------