Skip to content

Instantly share code, notes, and snippets.

View zenfosec's full-sized avatar

Dave Howard zenfosec

View GitHub Profile
@zenfosec
zenfosec / disable_firefox_autoconenctions.md
Last active December 5, 2024 03:02
Disable Automated Connections from Firefox

Disable Telemetry and Data Collection

  1. Access Firefox Configuration:

    • Open Firefox and type about:config in the address bar, then press Enter.
    • Accept the warning message by clicking on "Accept the Risk and Continue."
  2. Modify Preferences:

    • Search for each of the following preferences and set them to the specified values:

| Preference | Value |

#!/usr/bin/env python
# Takes an input nmap xml file and ouputs a comma separated list of open ports
# This does not include open|filtered ports and is used for an nmap command such as:
#
# nmap -sU -sV -p123,137,161,1645,182 10.10.10.10 -oA udp-services
#
# zenfosec 4/2/14
import xml.etree.ElementTree as ET
#!/usr/bin/env python
#
# Counts the occurrences of each service found in a gnmap file
# Outputs a space delimited list of <service> <count>
#
# 9/20/11 - zenfosec
import sys
import re
#!/usr/bin/env python
#
# Counts the occurrences of each port found in a gnmap file
# Outputs a space delimited list of <port> <count>
#
# 9/20/11 - zenfosec
# Updated 5/15/18
import sys
import re
#!/usr/bin/env python
import xml.etree.ElementTree as ET
import sys
import re
from datetime import datetime
if len(sys.argv) != 2:
print "Usage: sslyze_parse.py <sslyze_results.xml>"
sys.exit()
#!/usr/bin/env python
#
# Finds HTTP/HTTPS services and prints URLs in HTML
#
# 6/14/13 - zenfosec
import sys
import re
if len(sys.argv) != 2:
#!/usr/bin/env python
#
# Finds HTTP/HTTPS services and prints URLs
#
# 6/14/13 - zenfosec
import sys
import re
if len(sys.argv) != 2:
#!/usr/bin/env python
# Takes an input nmap xml file and script name and outputs the ip, port, and script results
#
# zenfosec 4/16/2014
import xml.etree.ElementTree as ET
import sys
import re