Skip to content

Instantly share code, notes, and snippets.

View Ssmidge's full-sized avatar
💻
Ssmidge Technologies

Adrian T Ssmidge

💻
Ssmidge Technologies
View GitHub Profile
@Ssmidge
Ssmidge / id_rsa.pub
Created December 19, 2023 23:20
public key 1
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCUX0I5aZU/w1bu+0SsTTJmQKdlGgB4CL4DyT5aoXXKb0rKPSHvC2LZzzGwZ8NOJ61wMXwh/BlufiQZ4E07oMDjQz+kgjG5cMVmSLu97/ojPBDSwtGa7d33ByCoyUPPOZSkISi3DXyMqp/zMLzai/6Tx57e7rk6QYyCB8bMEQfWcWp7TRSBR24Gk/f0FB135PbvD2PDteN+HMARadVhvZmO22iSQpgpasuIdLiOGyxwURw9erNWh1chsJY1/HIGhTo9YqGKz0nmjG+fPvi3QO+Td9JDiRiG9UAJo0yzAtD1HnwqVmVP6c0SKlduczpHzX7iIYeudQwKvLeBo8pwcaSPcXpfYMb/D+ThbhUAB143dySkS+2n/jzj+T9eg+aAS2OXZ6rvK8bGUBpSQWnk8UA4J80hey1znd7AZUsn1iWxHc57a2ZDqK4It3MbOpMCXMX4fszjUsvxiB20rovxez4+q4MWUMCyo5JCSJ1fjfvfuggwwKGsSC6gF/BWQ3dO+8qbp/t+6Rab2GS8nrGKDxma1cxHYSJQ4nWfzITjRltOOwgsjZ81xsycYUIxJeIYuhlJHNh/qXkhRYrsHnOwM64FKjfTCbsI2gs47BMyN2tTuAoQ4N6XQbfpwhUqQWCDKttAFJt7t5TuLKDAc3IUaDr0JV9WchAF0x6DJ1kwgyxSfQ== Ssmidge
@Ssmidge
Ssmidge / Starship
Created May 9, 2023 21:34 — forked from ohemilyy/Starship
Starship config
[character]
success_symbol = "[➜](bold green)"
error_symbol = "[➜](bold red) "
[username]
style_user = "bold #87ceeb"
show_always = true
format = "[$user]($style)@"
[hostname]
  1. Generate the file:
$ awk 'BEGIN { for(c=0;c<10000000;c++) printf "<p>LOL</p>" }' > 100M.html
$ (for I in `seq 1 100`; do cat 100M.html; done) | pv | gzip -9 > 10G.boomgz
  1. Check it is indeed good:
@Ssmidge
Ssmidge / identify-class-location.sh
Created December 11, 2021 21:21 — forked from righettod/identify-class-location.sh
Script to identify Log4J affected class for CVE-2021-44228 in a collection of jar files
#!/bin/bash
#########################################################################################################
# Script to identify Log4J affected class for CVE-2021-44228 in a collection of jar files
# Based on this script:
# https://github.com/righettod/toolbox-pentest-web/blob/master/scripts/identify-class-location.sh
#########################################################################################################
if [ "$#" -lt 1 ]; then
script_name=$(basename "$0")
echo "Usage:"
echo " $script_name [APP_LIBS_FOLDER]"