This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# [email protected] | |
# Thu May 9 04:04:44 CEST 2024 | |
# | |
# —————————————————————————————————————————————————————————————————————————————————————————————— | |
# | |
# $ ipmitool -H 10.10.10.10 -I lanplus -U admin | |
# Password: | |
# Unable to Get Channel Cipher Suites | |
# No command provided! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# [email protected] | |
# Thu May 9 02:27:35 CEST 2024 | |
# This script unpacks HPE iLO4 firmware scexe files | |
if [[ $# -ne 1 ]]; then | |
printf "Usage: $0 <CP053894.scexe>\n" | |
exit 1 | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Exec shellcode from file (no need of -z execstack) | |
* gcc ./shellcode_from_file.c -o ./shellcode_from_file | |
* | |
* Sat Jul 1 20:21:12 CEST 2023 | |
* [email protected] | |
* | |
* 1. Create a payload: | |
* msfvenom -p osx/x64/exec CMD=/bin/sh -f raw -o osx-exec.raw | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Exec shellcode from file | |
* gcc ./shellcode_mmap.c -o ./shellcode_mmap | |
* | |
* Sat Jul 1 20:21:12 CEST 2023 | |
* [email protected] | |
* | |
* 1. Create a payload: | |
* msfvenom -p osx/x64/exec CMD=/bin/sh -f raw -o osx-exec.raw | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# findilos - Search a local network segment for iLOs | |
# The iLO is the Integrated Lights-Out management processor | |
# used on HP ProLiant and BladeSystem servers | |
# | |
scriptversion="1.0" | |
# | |
# Author: [email protected] | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Bastard System Operator From Hell: <[email protected]> | |
pkgname=mirrorlist-manager | |
pkgver=1.1 | |
pkgrel=1 | |
pkgdesc="A Qt frontend for Pacman mirrorlist management" | |
arch=('x86_64') | |
url="https://github.com/Rizwan-Hasan/ArchLinux-Mirrorlist-Manager" | |
license=('GPL3') | |
depends=('python>=3.7.0' 'python-pyqt5>=5.11.2' 'python-sip-pyqt5>=4.19.12' 'pyqt5-common>=5.11.2' 'python-pandas>=0.23.4' 'pacman-contrib') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# [email protected] | |
# 18/08/2016 05:54:35 | |
# | |
# | |
# From man(1) find: | |
# | |
# -P Never follow symbolic links. This is the default behaviour. When find | |
# examines or prints information a file, and the file is a symbolic link, | |
# the information used shall be taken from the properties of the symbolic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# [email protected] | |
# 18/08/2016 05:54:35 | |
# | |
# | |
# From man(1) find: | |
# | |
# -P Never follow symbolic links. This is the default behaviour. When find | |
# examines or prints information a file, and the file is a symbolic link, | |
# the information used shall be taken from the properties of the symbolic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* [email protected] | |
* Sun Jan 29 06:57:23 CET 2017 | |
* | |
* gcc -o /tmp/suidshell suidshell.c | |
* chown root /tmp/shell | |
* chmod +s /tmp/shell | |
*/ | |
#define _GNU_SOURCE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# [email protected] | |
# Fri Jan 27 03:46:04 CET 2017 | |
error(){ printf "\e[0;31m${*}\e[0m\n"; } | |
success(){ printf "\e[0;32m${*}\e[0m\n"; } | |
if [ -z "$1" ]; then | |
error "Usage: $0 host.domain.com" | |
exit 1 |