Skip to content

Instantly share code, notes, and snippets.

View helloimalemur's full-sized avatar
🦊

Koonts helloimalemur

🦊
View GitHub Profile
@helloimalemur
helloimalemur / openssl_commands.md
Created April 22, 2024 16:57 — forked from Hakky54/openssl_commands.md
Some list of openssl commands for check and verify your keys

OpenSSL 🔐

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@helloimalemur
helloimalemur / Security_Challenges.txt
Created March 27, 2024 17:01
Security Challenges
CTFs
CTFtime.org
AWS Security
http://flaws.cloud/
http://flaws2.cloud/
https://github.com/RhinoSecurityLabs/cloudgoat
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "FullConfig",
"type": "object",
"properties": {
"$schema": {
"default": "https://starship.rs/config-schema.json",
"type": "string"
},
"aws": {
@helloimalemur
helloimalemur / email_to_sms_service_list.md
Last active February 27, 2024 00:11
Email to Text (SMS) Service List

Email to Text (SMS) Service List

AT&T: [number@txt.att.net] (SMS), [number@mms.att.net] (MMS)
T-Mobile: [number@tmomail.net] (SMS & MMS)
Verizon: [number@vtext.com] (SMS), [number@vzwpix.com] (MMS)
Sprint: [number@messaging.sprintpcs.com] (SMS), [number@pm.sprint.com] (MMS)
XFinity Mobile: [number@vtext.com] (SMS), [number@mypixmessages.com] (MMS)
Virgin Mobile: [number@vmobl.com] (SMS), [number@vmpix.com] (MMS)
Tracfone: [number@mmst5.tracfone.com] (MMS)
Metro PCS: [number@mymetropcs.com] (SMS & MMS)
@helloimalemur
helloimalemur / hackers_movie_quotes.txt
Last active February 22, 2024 21:50
Hackers Movie Quotes
Mess with the best, die like the rest.
There is no right and wrong. There's only fun and boring.
Spandex: it's a privilege, not a right.
The pool on the roof must have a leak.
YO THIS IS ZERO COOL!
Whoa! This isn't woodshop class?
Of all the things I've lost, I miss my mind the most.
Orwell is here now. He's livin' large. We have no names, man. No names. We are nameless!
"This is our world now. The world of the electron and the switch; the beauty of the baud. We exist without nationality, skin color, or religious bias. You wage wars, murder, cheat, lie to us and try to make us believe it's for our own good, yet we're the criminals. Yes, I am a criminal. My crime is that of curiosity. I am a hacker, and this is my manifesto." Huh? Right? Manifesto? "You may stop me, but you can't stop us all."
When I was a child, I spoke as a child, I understood as a child, I thought as a child, but when I became a man, I put away childish things. What? It's Corinthians one, chapter thirteen verse eleven.
@helloimalemur
helloimalemur / EndeavourOS_disable_sleep.md
Created February 11, 2024 17:18
EndeavourOS disable sleep
systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
@helloimalemur
helloimalemur / react_iter_array.md
Created January 27, 2024 08:02
React Iter Array

You can just use map within the components render method.

render () {
   return (
       <div>
           {stations.map(station => <div key={station}> {station} </div>)} 
       </div>
 );
@helloimalemur
helloimalemur / byomysql.sh
Last active January 22, 2024 17:45
Docker - MariaDB - Bring your own SQL server
## Bring your own SQL server;
export DOCKER_MARIADB_DBHOST="127.0.0.1";
export DOCKER_MARIADB_DBPORT="3306";
export DOCKER_MARIADB_DBNAME="mdb";
export DOCKER_MARIADB_DBHOSTPW="Password123!";
export DOCKER_MARIADB_DATABASE="mydatabase";
export DOCKER_MARIADB_USER="'devuser'";
export DOCKER_MARIADB_TABLE="mytable";
docker run -p "$DOCKER_MARIADB_DBHOST":"$DOCKER_MARIADB_DBPORT":"$DOCKER_MARIADB_DBPORT" --name "$DOCKER_MARIADB_DBNAME" -e MARIADB_ROOT_PASSWORD="$DOCKER_MARIADB_DBHOSTPW" -d mariadb:latest &
sleep 15s;
@helloimalemur
helloimalemur / lets_encrypt_dns_challenge.md
Created December 19, 2023 19:24
Let’s Encrypt Certificate with DNS Challenge and Namecheap

Install Let’s Encrypt Certbot

apt install certbot

Generate new certificate using Certbot

certbot certonly --manual --preferred-challenges dns -d "*.DOMAIN"

Setting DNX TXT ACME Challenge in Namecheap

@helloimalemur
helloimalemur / lets_encrypt_haproxy_certificates.md
Last active December 19, 2023 19:21
Fix Let's Encrypt Certificates for use with HAProxy