Skip to content

Instantly share code, notes, and snippets.

View 4w50m3d3v516n3r's full-sized avatar

Gustavo Moretti 4w50m3d3v516n3r

View GitHub Profile
@4w50m3d3v516n3r
4w50m3d3v516n3r / windows_hardening.cmd
Created April 6, 2021 21:20 — forked from mackwage/windows_hardening.cmd
Script to perform some hardening of Windows OS
:: Windows 10 Hardening Script
:: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering.
:: Obligatory 'views are my own'. :)
:: Thank you @jaredhaight for the Win Firewall config recommendations!
:: Thank you @ricardojba for the DLL Safe Order Search reg key!
:: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings!
:: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater
:
@4w50m3d3v516n3r
4w50m3d3v516n3r / qtrpi-cross-compile.md
Created February 9, 2021 21:22 — forked from kelixlabs/qtrpi-cross-compile.md
Cross-compiling Qt for HW accelerated OpenGL with eglfs on Raspbian and setting up Qt Creator

QT-Raspi Cross Compile

Prepare the Raspberry Pi:

Install raspbian

Get the latest raspbian image here

Enable deb-src repos

@4w50m3d3v516n3r
4w50m3d3v516n3r / resources.md
Created August 11, 2020 08:40 — forked from muff-in/resources.md
Assembly Language / Reversing / Malware Analysis -resources

Assembly Language / Reversing / Malware Analysis -resources

Twitter: Muffin

⭐Assembly Language

@4w50m3d3v516n3r
4w50m3d3v516n3r / mdbinj2.py
Created January 5, 2020 15:50 — forked from katiefoster/mdbinj2.py
Pentester Lab: MongoDB Injection #2
#Code for bruteforcing a UUID for pentesterlab's MongoDB injection exercise.
import cookielib, urllib2, urllib
from bs4 import BeautifulSoup
found = ""
potentialChar = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f","-"]
while True: