Skip to content

Instantly share code, notes, and snippets.

View JeromeBeckett's full-sized avatar

JeromeBeckett

  • GWS Media
  • Bristol, UK
View GitHub Profile
@SwitHak
SwitHak / 20211210-TLP-WHITE_LOG4J.md
Last active July 22, 2024 18:44
BlueTeam CheatSheet * Log4Shell* | Last updated: 2021-12-20 2238 UTC

Security Advisories / Bulletins / vendors Responses linked to Log4Shell (CVE-2021-44228)

Errors, typos, something to say ?

  • If you want to add a link, comment or send it to me
  • Feel free to report any mistake directly below in the comment or in DM on Twitter @SwitHak

Other great resources

  • Royce Williams list sorted by vendors responses Royce List
  • Very detailed list NCSC-NL
  • The list maintained by U.S. Cybersecurity and Infrastructure Security Agency: CISA List
@zaksabeast
zaksabeast / decrypt-api-body.js
Last active February 20, 2024 13:18
Pokemon Home Mobile App API Documentation
const crypto = require('crypto');
const zlib = require('zlib');
const util = require('util');
const gunzip = util.promisify(zlib.gunzip);
const decrypt = (data, key, iv) => {
const decipher = crypto.createDecipheriv('aes-256-cbc', key, iv);
const decrypted = decipher.update(data);
return Buffer.concat([decrypted, decipher.final()]);
@jctosta
jctosta / screen_cheatsheet.markdown
Last active July 21, 2024 23:07
Screen Cheatsheet

Screen Quick Reference

Basic

Description Command
Start a new session with session name screen -S <session_name>
List running sessions / screens screen -ls
Attach to a running session screen -x
Attach to a running session with name screen -r