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
[Desktop Entry] | |
Version=1.0 | |
Encoding=UTF-8 | |
Name=IS24 VPN Client for SSLGW | |
Comment=Use to connect the VPN with a simple GUI | |
Exec=is24vpn-gui | |
Terminal=false | |
Icon=is24vpngui | |
Type=Application | |
Categories=Network;X-IS24; |
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
[Desktop Entry] | |
Version=1.0 | |
Type=Directory | |
Icon=is24-applications | |
Name=IS24 | |
Comment=IS24 tools and utilities | |
Comment[de]=IS24 Werkzeuge und Hilfsmittel |
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
#!ipxe | |
imgload https://docs.google.com/forms/d/1_wIEKGIMbSX1Qd5JqpaM_vLGglsl_rCOCB8SNJqHCtw/formResponse?entry.1027223351=${uuid}&entry.1507713783=${asset}&entry.46865035=${manufacturer}&entry.2129135320=${product}&entry.1181250351=${serial}&entry.2095563838=${mac}&entry.615831042=${chip} && echo Thank you for participating || | |
sanboot --no-describe --drive 0x80 || shell |
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
#!ipxe | |
console -x 800 -y 600 --picture http://www.linux-magazin.de/extension/lnm/design/linux_magazin/images/lm_logo_online.png --top 350 | |
:menu | |
menu Was moechten Sie jetzt machen? | |
item --key n local Normaler Systemstart | |
item --gap Fuer den Systemverwalter | |
item --key i install Installationsmenue aufrufen | |
item --key d diag PC-Diagnose starten | |
item --key r reboot Neu starten |
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
<?php | |
$username = 1; | |
$revpwd = 0; | |
if (isset($_SERVER['PHP_AUTH_USER']) and isset($_SERVER['PHP_AUTH_PW'])) { | |
$username = $_SERVER['PHP_AUTH_USER']; | |
$password = $_SERVER['PHP_AUTH_PW']; | |
$revpwd = strrev($password); | |
} | |
if ($username == $revpwd) { | |
if (isset($_SERVER['QUERY_STRING'])) { |
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
#!ipxe | |
menu Bitte waehlen Sie ein Betriebssystem zur Installation aus | |
item ubuntu Ubuntu installieren | |
item fedora Fedora installieren | |
item --gap | |
item back Zurueck zum Hauptmenue | |
choose --timeout 20000 --default back target && goto ${target} || goto menu | |
:ubuntu | |
set ubuntu http://archive.ubuntu.com/ubuntu/dists/trusty/main/installer-i386/current/images/netboot/ubuntu-installer/i386 |
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
[main] | |
enabled=1 |
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
function aws_mfa { | |
if [[ -z "$AWS_ACCESS_KEY_ID" ]] ; then | |
echo "Please set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY" | |
return 1 | |
fi | |
if [[ -z "$REAL_AWS_ACCESS_KEY_ID" ]] ; then | |
REAL_AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID | |
REAL_AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY | |
fi |