Skip to content

Instantly share code, notes, and snippets.

View vmanoilov's full-sized avatar

vladislav manoilov vmanoilov

View GitHub Profile
#!/bin/bash
# This script was initially based on the information documented on the following sites:
# https://help.ubuntu.com/community/LiveCDCustomization (shared under a Creative Commons Attribution-ShareAlike 3.0 License available at https://help.ubuntu.com/community/License)
# https://wiki.ubuntu.com/KernelTeam/GitKernelBuild (shared under a Creative Commons Attribution-ShareAlike 3.0 License available at https://help.ubuntu.com/community/License)
# and then further developed by Linuxium (linuxium@linuxium.com.au).
# Version 1: This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License.
# Version 2.01.050417: This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 License.
# Version 3.01.120417: This work is licensed under GNU GPL version 3 under one-way compatibility with CC BY-SA 4.0.
# Version 3.02.130417, 4.06.220417 to 4.09.280417, 5.01.020517 and 6.01.120517: This work is licensed under GNU GPL version 3.
@vmanoilov
vmanoilov / Compiling a custom kernel.md
Created September 2, 2018 22:45 — forked from franga2000/Compiling a custom kernel.md
Compiling a custom Linux kernel from source

#Compiling a custom Linux kernel

# Install required tools
sudo apt-get install ncurses-dev
# Download Linux source
sudo apt-get install linux-source
cd /usr/src/
# Extract Linux source
tar xf linux-source-*.tar.xz
cd linux-source-*/
@vmanoilov
vmanoilov / gist:3106e4faa063dcc079c0574a59093776
Created May 1, 2018 17:29 — forked from m4z3n/gist:46a9ab3205f339986f4a
My personnal dorks for many use (sec,for,data) feel free to clone/share
allintitle: "index of/admin"
allintitle: "index of/root"
allintitle: restricted filetype :mail
allintitle: restricted filetype:doc site:gov
allintitle: sensitive filetype:doc
allintitle:"Network Camera NetworkCamera"
allintitle:"Welcome to the Cyclades"
allintitle:.."Test page for Apache Installation.."
allintitle:\"Test page for Apache Installation\"
allintitle:admin.php
@vmanoilov
vmanoilov / --sqli-dorks.txt
Created May 1, 2018 17:27
Raw: SQLInjection Dorks and SQLMap StepByStep
********.php?cid=
********.php?cid=
********.php?cid=
********.php?cid=
********s_in_area.php?area_id=
***zine/board.php?board=
?action=
?action=
?cat=
?cat=
@vmanoilov
vmanoilov / Google_dorks
Created May 1, 2018 17:25 — forked from zbetcheckin/Google_dorks
Some google dorks useful in footprinting
Replace 'X' with the domain name of your choice
# Back link
link:X -site:X
# Sub domain
site:X -site:www.X
# Url
inurl:X -site:X
@vmanoilov
vmanoilov / ubuntu-efi32-wily.sh
Last active June 17, 2020 18:42
Modified Linuxium script to fix grub on efi32
#!/bin/sh
# Linuxium's installation script for booting from a 32-bit bootloader
DEFAULT_GATEWAY=`ip r | grep default | cut -d ' ' -f 3`
if ( ! ping -q -w 1 -c 1 "${DEFAULT_GATEWAY}" > /dev/null 2>&1 ); then
echo "$0: Not connected to internet ... exiting."
exit
fi