Skip to content

Instantly share code, notes, and snippets.

View warifp's full-sized avatar
:shipit:
Life is a nightmare with code, raised on ethics

Wahyu Purnomo warifp

:shipit:
Life is a nightmare with code, raised on ethics
View GitHub Profile
Verify Github on Galxe. gid:sJCsy9xvzN3TNQnnN5Cy8S
@warifp
warifp / maps.txt
Created October 14, 2022 04:16 — forked from albertzsigovits/maps.txt
Cyber Attack Maps
# Cyber attack maps:
####################
Akamai https://www.akamai.com/us/en/solutions/intelligent-platform/visualizing-akamai/real-time-web-monitor.jsp
Arbor Networks https://www.digitalattackmap.com
Bitdefender https://threatmap.bitdefender.com
BlueLiv https://community.blueliv.com/map
Cisco Talos https://www.talosintelligence.com
Checkpoint https://threatmap.checkpoint.com
Deutsche Telekom https://sicherheitstacho.eu/start/main
@warifp
warifp / yii2-app-root-path.md
Created January 31, 2023 04:16 — forked from umidjons/yii2-app-root-path.md
Set the application root path via .htaccess

Set the application root path via .htaccess

Create .htaccess file in the application root folder.

RewriteEngine On
RewriteCond %{REQUEST_URI} !^web
RewriteRule ^(.*)$ web/$1 [L]
@warifp
warifp / report.py
Created June 12, 2023 08:28 — forked from Huntinex/report.py
Automatic bug bounty report generator
import poe, sys
client = poe.Client("<POE_API_KEY_HERE>")
title=sys.argv[1]
path=sys.argv[2]
more=""
if len(sys.argv) > 3:
more="\" and here is more information: "+sys.argv[3]
message="""generate a bug bounty report for me (hackerone.com), the title of the bug is """+title+""" and the vulnerability path is \""""+path+more+"""