├── Makefile ├── NOTES ├── README.md ├── adjust.c ├── adjust.h ├── agents.txt ├── antisurveillance.c ├── antisurveillance.h ├── attack_todo ├── attacks.c ├── attacks.h ├── bigtest.sh ├── client_body ├── cmdline.c ├── cmdline.h ├── connecttest.c ├── connecttest6.c ├── cyberwar_checkpsh.c ├── cyberwar_filter.sh ├── cyberwar_findips ├── cyberwar_findips.c ├── cyberwar_findips.h ├── cyberwar_timing ├── cyberwar_timing.c ├── cyberwarfare.c ├── cyberwarfare.h ├── http.c ├── http.h ├── identities.c ├── identities.h ├── instructions.c ├── instructions.h ├── listentest.c ├── macro.c ├── macro.h ├── mgr.py ├── network.c ├── network.h ├── network_api.c ├── network_api.h ├── packetbuilding.c ├── packetbuilding.h ├── pcap.c ├── pcap.h ├── pcap └── testing_pcap_import.pcap ├── prerun.sh ├── research.c ├── research.h ├── scripting.c ├── scripting.h ├── scriptmain.c ├── scriptmain.h ├── server_body ├── tcp_examples ├── attack1.c └── attack1.pcap.pcapng ├── tracedev.c ├── utils.c ├── utils.h ├── vpn.c ├── vpn.h └── why ├── bypassing_signal_intelligence_platforms.pdf ├── catching_mass_surveillance_in_the_act.pdf ├── congress_complaint_april_2017.pdf ├── distro_march_10.pdf ├── dns_ddos_protection_vuln.pdf ├── dying_prism.pdf ├── dynamic_cryptography_quantum_resistant.pdf ├── human_civil_rights_complaint.pdf ├── invisible_friends_9-16-17.pdf ├── mass_surveillance_disruption.pdf ├── new_complaint.pdf ├── sim_remote_dos_perm_damage.pdf ├── ssl_possible_implementation_vuln.pdf └── tcp_tracing_internet.pdf /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/Makefile -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/README.md -------------------------------------------------------------------------------- /adjust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/adjust.c -------------------------------------------------------------------------------- /adjust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/adjust.h -------------------------------------------------------------------------------- /agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/agents.txt -------------------------------------------------------------------------------- /antisurveillance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/antisurveillance.c -------------------------------------------------------------------------------- /antisurveillance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/antisurveillance.h -------------------------------------------------------------------------------- /attack_todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/attack_todo -------------------------------------------------------------------------------- /attacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/attacks.c -------------------------------------------------------------------------------- /attacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/attacks.h -------------------------------------------------------------------------------- /bigtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/bigtest.sh -------------------------------------------------------------------------------- /client_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/client_body -------------------------------------------------------------------------------- /cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cmdline.c -------------------------------------------------------------------------------- /cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cmdline.h -------------------------------------------------------------------------------- /connecttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/connecttest.c -------------------------------------------------------------------------------- /connecttest6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/connecttest6.c -------------------------------------------------------------------------------- /cyberwar_checkpsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwar_checkpsh.c -------------------------------------------------------------------------------- /cyberwar_filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwar_filter.sh -------------------------------------------------------------------------------- /cyberwar_findips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwar_findips -------------------------------------------------------------------------------- /cyberwar_findips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwar_findips.c -------------------------------------------------------------------------------- /cyberwar_findips.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cyberwar_timing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwar_timing -------------------------------------------------------------------------------- /cyberwar_timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwar_timing.c -------------------------------------------------------------------------------- /cyberwarfare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/cyberwarfare.c -------------------------------------------------------------------------------- /cyberwarfare.h: -------------------------------------------------------------------------------- 1 | int Cyberwarefare_Incoming(AS_context *ctx, PacketBuildInstructions *iptr); -------------------------------------------------------------------------------- /http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/http.c -------------------------------------------------------------------------------- /http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/http.h -------------------------------------------------------------------------------- /identities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/identities.c -------------------------------------------------------------------------------- /identities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/identities.h -------------------------------------------------------------------------------- /instructions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/instructions.c -------------------------------------------------------------------------------- /instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/instructions.h -------------------------------------------------------------------------------- /listentest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/listentest.c -------------------------------------------------------------------------------- /macro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/macro.c -------------------------------------------------------------------------------- /macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/macro.h -------------------------------------------------------------------------------- /mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/mgr.py -------------------------------------------------------------------------------- /network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/network.c -------------------------------------------------------------------------------- /network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/network.h -------------------------------------------------------------------------------- /network_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/network_api.c -------------------------------------------------------------------------------- /network_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/network_api.h -------------------------------------------------------------------------------- /packetbuilding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/packetbuilding.c -------------------------------------------------------------------------------- /packetbuilding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/packetbuilding.h -------------------------------------------------------------------------------- /pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/pcap.c -------------------------------------------------------------------------------- /pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/pcap.h -------------------------------------------------------------------------------- /pcap/testing_pcap_import.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/pcap/testing_pcap_import.pcap -------------------------------------------------------------------------------- /prerun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/prerun.sh -------------------------------------------------------------------------------- /research.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/research.c -------------------------------------------------------------------------------- /research.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/research.h -------------------------------------------------------------------------------- /scripting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/scripting.c -------------------------------------------------------------------------------- /scripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/scripting.h -------------------------------------------------------------------------------- /scriptmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/scriptmain.c -------------------------------------------------------------------------------- /scriptmain.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server_body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/server_body -------------------------------------------------------------------------------- /tcp_examples/attack1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/tcp_examples/attack1.c -------------------------------------------------------------------------------- /tcp_examples/attack1.pcap.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/tcp_examples/attack1.pcap.pcapng -------------------------------------------------------------------------------- /tracedev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/tracedev.c -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/utils.h -------------------------------------------------------------------------------- /vpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/vpn.c -------------------------------------------------------------------------------- /vpn.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /why/bypassing_signal_intelligence_platforms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/bypassing_signal_intelligence_platforms.pdf -------------------------------------------------------------------------------- /why/catching_mass_surveillance_in_the_act.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/catching_mass_surveillance_in_the_act.pdf -------------------------------------------------------------------------------- /why/congress_complaint_april_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/congress_complaint_april_2017.pdf -------------------------------------------------------------------------------- /why/distro_march_10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/distro_march_10.pdf -------------------------------------------------------------------------------- /why/dns_ddos_protection_vuln.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/dns_ddos_protection_vuln.pdf -------------------------------------------------------------------------------- /why/dying_prism.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/dying_prism.pdf -------------------------------------------------------------------------------- /why/dynamic_cryptography_quantum_resistant.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/dynamic_cryptography_quantum_resistant.pdf -------------------------------------------------------------------------------- /why/human_civil_rights_complaint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/human_civil_rights_complaint.pdf -------------------------------------------------------------------------------- /why/invisible_friends_9-16-17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/invisible_friends_9-16-17.pdf -------------------------------------------------------------------------------- /why/mass_surveillance_disruption.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/mass_surveillance_disruption.pdf -------------------------------------------------------------------------------- /why/new_complaint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/new_complaint.pdf -------------------------------------------------------------------------------- /why/sim_remote_dos_perm_damage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/sim_remote_dos_perm_damage.pdf -------------------------------------------------------------------------------- /why/ssl_possible_implementation_vuln.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/ssl_possible_implementation_vuln.pdf -------------------------------------------------------------------------------- /why/tcp_tracing_internet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeguidry/antisurveillance/HEAD/why/tcp_tracing_internet.pdf --------------------------------------------------------------------------------