Skip to content

Instantly share code, notes, and snippets.

@KhitMinnyo
KhitMinnyo / README.md
Last active November 24, 2023 05:13
This script will call back alien character into your Kali's root terminal.

about alien character

Kali used alien character in its root terminal. It used alien character instead @ in its root terminal, root@kali# But, latest versions, Kali doesn't include that character. I like alien character. So, i made & shared this scripts for whom who wants to use the alien. This script can help you.

#First, download the script & change into executable file with the following command

chmod +x alienKali.sh 
@KhitMinnyo
KhitMinnyo / grub-updater.sh
Created February 9, 2019 04:02
This script will update your boot options. After installing this, you should reboot your system. If system starts, retry to reboot. If it doesn't work, install second sh file.
#!/bin/bash
echo "# If you change this file, run 'update-grub' afterwards to update" > /etc/default/grub
echo "# /boot/grub/grub.cfg." >> /etc/default/grub
echo "# For full documentation of the options in this file, see:" >> /etc/default/grub
echo "# info -f grub -n 'Simple configuration'" >> /etc/default/grub
echo ""
echo "GRUB_DEFAULT=0" >> /etc/default/grub
echo "GRUB_TIMEOUT=5" >> /etc/default/grub
echo "GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`" >> /etc/default/grub
@KhitMinnyo
KhitMinnyo / mingw32.sh
Last active October 5, 2023 14:05
This script will install mingw32 on your Kali, Ubuntu & other Debian Linux systems.
#!/bin/bash
echo "This scripts were created by Khit Minnyo for Kali Linux, Ubuntu Linux and other Debians linux systems."
echo "At first, This program will add Debian's Repository to your sources."
echo "And then, it will install mingw32 according to your system."
#Check system
uname -a
dpkg --print-architecture
if [[ $(dpkg --print-architecture) == *"amd64"* ]];
then
@KhitMinnyo
KhitMinnyo / setting.sh
Created August 21, 2018 10:38
This scripts will reinstall your apache2 & mysql service.
#!/bin/bash
apt purge apache2 -y
apt purge php -y
apt autoremove -y
apt autoclean
apt install apache2 -y
apt install php -y
service apache2 restart
service mysql restart
service postgresql restart
@KhitMinnyo
KhitMinnyo / nvidia-installer.sh
Last active June 15, 2018 12:36
This program will check Kali's Sources list file and fill latest Kali's source. And then will install NVIDIA packages to Kali. Make sure your files backup.
#!/bin/bash
#This scripts were created by Khit Minnyo for Kali to install Nvidia packages....
#About Installer .......
echo """
███╗ ██╗██╗ ██╗██╗██████╗ ██╗ █████╗
████╗ ██║██║ ██║██║██╔══██╗██║██╔══██╗
██╔██╗ ██║██║ ██║██║██║ ██║██║███████║
██║╚██╗██║╚██╗ ██╔╝██║██║ ██║██║██╔══██║
██║ ╚████║ ╚████╔╝ ██║██████╔╝██║██║ ██║
╚═╝ ╚═══╝ ╚═══╝ ╚═╝╚═════╝ ╚═╝╚═╝ ╚═╝
@KhitMinnyo
KhitMinnyo / Google Dorks
Created June 13, 2018 06:20
This is for Sharing only. I get this from https://pastebin.com/Tdvi8vgK.
## 7,000 Dorks for hacking into various sites ##
about.php?cartID=
accinfo.php?cartId=
acclogin.php?cartID=
add.php?bookid=
add_cart.php?num=
addcart.php?
addItem.php
add-to-cart.php?ID=
@KhitMinnyo
KhitMinnyo / jv-ap.java
Last active June 7, 2018 04:58
A good example of a client side exploit based on a human vulnerability, as opposed to a software vulnerability, is the JavaApplet client side attack. This attack affects targets with Java installed and enabled in their browsers – a required feature for many administrators and power users. As JavaLenabled browsers can run Java applications, it is…
import java.applet.*;
import java.awt.*;
import java.io.*;
import java.net.URL;
import java.util.*;
/**
* Original Creator = Offensive Security
* Shared by : Khit Minnyo
**/
@KhitMinnyo
KhitMinnyo / wget.vbs
Last active June 1, 2018 04:41
If you's studying on file transferring with Scripting languages, you may need to create wget-vbs. This vbs is already made for ready to use.
strUrl = WScript.Arguments.Item(0)
StrFile = WScript.Arguments.Item(1)
Const HTTPREQUEST_PROXYSETTING_DEFAULT = 0
Const HTTPREQUEST_PROXYSETTING_PRECONFIG = 0
Const HTTPREQUEST_PROXYSETTING_DIRECT = 1
Const HTTPREQUEST_PROXYSETTING_PROXY = 2
Dim http,varByteArray,strData,strBuffer,lngCounter,fs,ts
Err.Clear
Set http = Nothing
Set http = CreateObject("WinHttp.WinHttpRequest.5.1")
@KhitMinnyo
KhitMinnyo / oscp_wget-vbs
Created June 1, 2018 03:38
If you's studying on file transferring with Scripting languages, you may need to create wget-vbs. So this will help you to create it quickly. I got this from Offensive Security Courses. This is my sharing only.
echo strUrl = WScript.Arguments.Item(0) > wget.vbs
echo StrFile = WScript.Arguments.Item(1) >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_DEFAULT = 0 >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_PRECONFIG = 0 >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_DIRECT = 1 >> wget.vbs
echo Const HTTPREQUEST_PROXYSETTING_PROXY = 2 >> wget.vbs
echo Dim http,varByteArray,strData,strBuffer,lngCounter,fs,ts >> wget.vbs
echo Err.Clear >> wget.vbs
echo Set http = Nothing >> wget.vbs
echo Set http = CreateObject("WinHttp.WinHttpRequest.5.1") >> wget.vbs
#!/bin/sh
#Credit Dr. Mike & Apolloclark
while getopts "dte:h?" opt ; do
case "$opt" in
h|\?)
printf "usage: %s -e KEY=VALUE prog [args...]\n" $(basename $0)
exit 0
;;
t)
tty=1