Skip to content

Instantly share code, notes, and snippets.

@JJK96
JJK96 / Get-ProcessPipes.ps1
Last active March 4, 2024 09:13 — forked from Wra7h/Get-ProcessPipes.ps1
Use PowerShell to get the PIDs associated with Named Pipes
function Get-ProcessPipes{
param(
[Parameter(Mandatory=$false)]
[string]$CSV,
[Parameter(Mandatory=$false)]
[switch]$All
)
Add-Type -TypeDefinition @"
using System;
@JJK96
JJK96 / get_names.py
Created July 21, 2024 13:58
Lijst van alle Bijbelse namen
import requests
import bs4
import string
def get_names_starting_with(letter):
contents = requests.get(f"https://www.debijbel.nl/bijbelse-namen/bijbelse-namen-met-een-{letter}")
soup = bs4.BeautifulSoup(contents.text,'html.parser')
trs = soup.find_all("tr")
for tr in trs:
name = tr.td.strong.text
@JJK96
JJK96 / gist:ec558b4bf2eb8b5dff30010a9ecac581
Last active July 31, 2024 08:10
SQLite convert microsoft edge or google chrome history file timestamp
strftime('%d-%m-%Y %H:%M',datetime(timestamp/1000000+unixepoch("1601-01-01"), 'unixepoch', 'localtime'))
@JJK96
JJK96 / frida-extract-keystore.py
Created December 16, 2025 14:44 — forked from ceres-c/frida-extract-keystore.py
Automatically extract KeyStore objects and relative password from Android applications with Frida - Read more: https://ceres-c.it/2018/12/16/frida-android-keystore/
#!/usr/bin/python3
'''
author: ceres-c
usage: ./frida-extract-keystore.py
Once the keystore(s) have been exported you have to convert them to PKCS12 using keytool
'''
import frida, sys, time