Skip to content

Instantly share code, notes, and snippets.

View ClassErased's full-sized avatar
:shipit:
shipit

Aaron ClassErased

:shipit:
shipit
View GitHub Profile
@mgeeky
mgeeky / VLANHopperDTP.py
Last active July 15, 2023 17:19
VLAN Hopping via DTP Trunk (Switch) Spoofing exploit - script automating full VLAN Hopping attack, from DTP detection to VLAN Hop with DHCP lease request.
#!/usr/bin/python
#
# This script is performing DTP Trunk mode detection and VLAN Hopping
# attack automatically, running sniffer afterwards to collect any other
# VLAN available. To be launched only in Unix/Linux environment as the
# script utilizes following applications:
# - 8021q.ko
# - vconfig
# - ifconfig / ip / route
@bistaumanga
bistaumanga / myFFT.py
Last active October 19, 2022 14:59
Fast Fourier Transform Library in Python
#################################################################################
#
# This is FFT library implemented in python.
# The Algorithm used is FFT, decimation in time, radix -2 algorithm
# can compute FFT of 1-d and 2-d lists, 1-d for 1-d signals , and 2-d for images
#
# by : Umanga Bista @ bistaumanga@gmail.com
#
#################################################################################