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
| 3--- | |
| connection: | |
| server: scholl.de.libertirc.net | |
| port: 6667 | |
| nickname: JuPiBot | |
| username: jupis | |
| realname: Ein Bot | |
| away: "Dieser Bot wird betrieben von: Fritz </dev/null@grimpen.net>" | |
| plugins: |
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/sh | |
| # Usage: ./batt.sh COMMAND | |
| # | |
| # Use the environment variables `critical' and `sleep_time' to refine this | |
| # script. | |
| # | |
| # Example: critical=50 ./batt.sh COMMAND | |
| # Result: Every battery charge under 50% will result in COMMAND | |
| if [ ! -d "/proc" ] |
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
| ELF Header: | |
| Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 | |
| Class: ELF32 | |
| Data: 2's complement, little endian | |
| Version: 1 (current) | |
| OS/ABI: UNIX - System V | |
| ABI Version: 0 | |
| Type: EXEC (Executable file) | |
| Machine: Intel 80386 | |
| Version: 0x1 |
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
| [*] Resolving kernel addresses... | |
| [+] Resolved econet_ioctl to 0xf822a2d0 | |
| [+] Resolved econet_ops to 0xf822a3c0 | |
| [+] Resolved commit_creds to 0xc01763d0 | |
| [+] Resolved prepare_kernel_cred to 0xc0176710 | |
| [*] Calculating target... | |
| [*] Triggering payload... | |
| [*] Got root! | |
| # |
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
| if((uint32)kmalloc(sizeof(memorySection_t))+sizeof(memorySection_t)*2==(uint32)kmalloc(sizeof(memorySection_t)))log("kmalloc should work\n"); |
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 | |
| # Usage: checkzone NS_SERVER DOMAIN SERIAL_NUMBER | |
| for i in $* | |
| do | |
| if [ "$i" = "--help" ] | |
| then | |
| echo "Usage: checkzone NS_SERVER DOMAIN SERIAL_NUMBER" | |
| exit | |
| fi | |
| done |
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 ruby | |
| # Wie man es nutzt: ruby extract_youtube_links.rb <VerzeichnisMitLogDateien> | |
| require "open-uri" | |
| require "uri" | |
| require "erb" | |
| if $*[0] == "--help" || $*[0] == "help" || $*[0] == "-h" | |
| puts <<HELP | |
| ruby extract_youtube_links.rb <VerzeichnisMitLogDateien> |
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
| e2fsck 1.41.12 (17-May-2010) | |
| Warnung! /dev/sda1 ist eingehängt. | |
| Warnung: Überspringe Journal-Wiederherstellung, da das Dateisystem im Nur-Lesen-Modus ist. | |
| /dev/sda1 enthält ein fehlerhaftes Dateisystem, Prüfung erzwungen. | |
| Durchgang 1: Prüfe Inodes, Blocks, und Größen | |
| Durchgang 2: Prüfe Verzeichnis Struktur | |
| Durchgang 3: Prüfe Verzeichnis Verknüpfungen | |
| Durchgang 4: Überprüfe die Referenzzähler | |
| Durchgang 5: Überprüfe Gruppe Zusammenfassung | |
| Die Anzahl freier Blöcke in Gruppe #737 ist falsch (31371, gezählt=31372). |
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
| 1. Domainkündigungen verschicken | |
| 2. Eigene Homepage basteln | |
| … |
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 | |
| # List TODO notices in directory | |
| Files=`find` | |
| echo "TODO List" | |
| echo | |
| for i in $Files | |
| do | |
| if [ "`echo $i | grep '.git'`" != "" ] |