Skip to content

Instantly share code, notes, and snippets.

View existentializm's full-sized avatar
🎯
Focusing

Liz Jaluague existentializm

🎯
Focusing
View GitHub Profile

How to pass the OSCP

  1. Recon
  2. Find vuln
  3. Exploit
  4. Document it

Recon

Unicornscans in cli, nmap in msfconsole to help store loot in database.

@existentializm
existentializm / math
Created November 15, 2019 20:34
BSides Detroit Math Challenge
# What is the sum of primes between 7000 and 1000000 that starts with a 7 or ends with a 3?
primesList=[]
startSeven=[]
endThree=[]
lower = 7000
upper = 1000000
for num in range(lower, upper + 1):
<?php
add_filter('woocommerce_thankyou_order_received_text', 'woo_change_order_received_text', 10, 2 );
function woo_change_order_received_text( $str, $order ) {
$new_str = $str . ' We have emailed the purchase receipt to you.';
return $new_str;
}