Skip to content

Instantly share code, notes, and snippets.

View highrider0602's full-sized avatar

Dylan Long highrider0602

View GitHub Profile
@highrider0602
highrider0602 / network_scanner.py
Created August 3, 2021 06:45
simple python network scanner using scapy
#!/usr/bin/env python
import scapy.all as scapy
import optparse
def get_arguments():
parser = optparse.OptionParser()
parser.add_option("-t", "--target", dest="target", help="Target IP/Target.")
(options, arguments) = parser.parse_args()
if not options.target:
@highrider0602
highrider0602 / arpspoof.py
Created August 5, 2021 10:03
arp_spoof.py
#!/usr/bin/env python
import scapy.all as scapy
import time
import sys
def get_mac(ip):
arp_request = scapy.ARP(pdst=ip)
broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff")
arp_request_broadcast = broadcast/arp_request
@highrider0602
highrider0602 / vmware-
Last active March 12, 2022 04:58
vmware install error
2022-03-12T01:14:15.496Z In(05) host-20654 Log for VMware Workstation pid=20654 version=16.2.3 build=build-19376536 option=Release
2022-03-12T01:14:15.496Z In(05) host-20654 The host is 64-bit.
2022-03-12T01:14:15.496Z In(05) host-20654 Host codepage=UTF-8 encoding=UTF-8
2022-03-12T01:14:15.496Z In(05) host-20654 Host is Linux 5.16.0-kali3-amd64 Kali GNU/Linux Rolling Kali GNU/Linux Rolling 2022.1
2022-03-12T01:14:15.496Z In(05) host-20654 Host offset from UTC is -06:00.
2022-03-12T01:14:15.495Z In(05) host-20654 DictionaryLoad: Cannot open file "/usr/lib/vmware/settings": No such file or directory.
2022-03-12T01:14:15.495Z In(05) host-20654 [msg.dictionary.load.openFailed] Cannot open file "/usr/lib/vmware/settings": No such file or directory.
2022-03-12T01:14:15.495Z In(05) host-20654 PREF Optional preferences file not found at /usr/lib/vmware/settings. Using default values.
2022-03-12T01:14:15.495Z In(05) host-20654 DictionaryLoad: Cannot open file "/root/.vmware/config": No such file or directory.
2022-03