├── .gitignore ├── README.md ├── dc14 ├── BaseTen.cgi ├── Heisenberg ├── InMyMemory ├── Newfucktcpd2 ├── Vanilla ├── assd ├── c64emu ├── falldownd ├── fingerd ├── kmail ├── kuftpd ├── monsterd ├── npd ├── osd ├── quark ├── smtpd └── test ├── extras ├── UserAdder ├── barista │ └── welcome ├── casino.pl ├── cheese-www │ └── data │ │ ├── cheese.pl │ │ └── index.html ├── cm │ ├── cjd │ ├── cmd.pid │ └── key ├── cohend │ ├── cohend │ └── index.html ├── grimclient ├── grimcreeper.c ├── hfd │ ├── dh1024.pem │ ├── root.pem │ └── server.pem ├── kdns │ └── kdns.conf ├── madlib │ ├── articles.txt │ ├── nouns.txt │ ├── objects.txt │ └── verbs.txt ├── makeuser ├── mdlj │ ├── dhparam.pem │ ├── mdljserver.crt │ ├── mdljserver.key │ ├── mdljservercert.pem │ ├── mdljserverprivkey.pem │ └── mdljserverpubkey.pem ├── moat │ └── larry.ql ├── nubbin │ └── passwords.txt ├── rsatesp │ ├── auth.db │ ├── createdb.sh │ ├── rsatesp │ └── rsatesp_2 ├── spelunk │ ├── adv.key │ └── adv.rec ├── supd ├── supd.pyc └── xserver ├── rc.d ├── EmergencyBrake ├── SupaFlyTNT ├── alice ├── antipastod ├── arpsd ├── aspd ├── b16 ├── baaaad ├── bakalakadakaChat ├── barista ├── befunge ├── blowlogd ├── bowser ├── bparkd ├── bunny ├── cashew ├── casino ├── castle ├── catdoord ├── cherry ├── cjd ├── cleaner ├── cmd ├── cohend ├── coney ├── ddftpd ├── dealer ├── deltad ├── desheepd ├── deuced ├── diablo ├── dog ├── duckshootd ├── echod ├── elfd ├── enigma ├── fingerd ├── food ├── forgetu ├── gallows ├── gold ├── grimcreeper ├── hashpiped ├── hfd ├── hiver ├── houdini ├── htlame ├── iMagick ├── inetd ├── intception ├── jerkin ├── joshua ├── kdnsd ├── kftpd ├── kimjong ├── kmaild ├── kmsgd ├── kryptod ├── kstrings ├── kuftpd ├── lazrus ├── libra ├── lockstep ├── madlibd ├── magicd ├── mashup ├── mdljserver ├── memix ├── menageatrois ├── mixology ├── moatd ├── mqdbd ├── mymqld ├── nadel ├── named ├── natord ├── nettoe ├── neurod ├── nickd ├── nom ├── noprotas ├── nssds ├── ocrd ├── parrot ├── perudo ├── pisa ├── ralph ├── readmail ├── roflcode ├── rolodex ├── rotary ├── rsatesp ├── sammichd ├── santad ├── scool ├── semem ├── serverd ├── sheepster ├── shellcat ├── slickd ├── smtpd ├── sockringd ├── sor ├── spelunk ├── supd ├── superd ├── sushid ├── telephone ├── tictactoe ├── tomato ├── torqux ├── transformd ├── tucod ├── vacation ├── war ├── wumpus ├── wwcd └── zul ├── rc_d_template └── sbin ├── EmergencyBrake ├── SupaFlyTNT ├── alice ├── antipastod ├── arpsd ├── aspd ├── b16 ├── baaaad ├── bakalakadakaChat ├── barista ├── befunge ├── blowlogd ├── bowser ├── bparkd ├── bunny ├── cashew ├── casino ├── castle ├── catdoord ├── cherry ├── cjd ├── cleaner ├── cmd ├── cohend ├── coney ├── ddftpd ├── deltad ├── desheepd ├── deuced ├── diablo ├── dog ├── duckshootd ├── echod ├── elfd ├── enigma ├── fingerd ├── food ├── forgetu ├── gallows ├── gold ├── grimcreeper ├── hashpiped ├── hfd ├── hiver ├── houdini ├── htlame ├── iMagick ├── inetd ├── intception ├── jerkin ├── joshua ├── kdnsd ├── kftpd ├── kimjong ├── kmaild ├── kmsgd ├── kryptod ├── kstrings ├── kuftpd ├── lazrus ├── libra ├── lockstep ├── madlibd ├── magicd ├── mashup ├── mdljserver ├── memix ├── menageatrois ├── mixology ├── moatd ├── mqdbd ├── mymqld ├── nadel ├── named ├── natord ├── nettoe ├── neurod ├── nickd ├── nom ├── noprotas ├── nssds ├── ocrd ├── parrot ├── perudo ├── pisa ├── ralph ├── readmail ├── roflcode ├── rolodex ├── rotary ├── rsatesp ├── sammichd ├── sandy ├── santad ├── scool ├── semem ├── serverd ├── sheepster ├── shellcat ├── slickd ├── smtpd ├── sockringd ├── sor ├── spelunk ├── supd ├── superd ├── sushid ├── telephone ├── tictactoe ├── tomato ├── torqux ├── transformd ├── tucod ├── vacation ├── war ├── wumpus ├── wwcd └── zul /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.swp 3 | *.idb 4 | *.bndb 5 | -------------------------------------------------------------------------------- /dc14/BaseTen.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/BaseTen.cgi -------------------------------------------------------------------------------- /dc14/Heisenberg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/Heisenberg -------------------------------------------------------------------------------- /dc14/InMyMemory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/InMyMemory -------------------------------------------------------------------------------- /dc14/Newfucktcpd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/Newfucktcpd2 -------------------------------------------------------------------------------- /dc14/Vanilla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/Vanilla -------------------------------------------------------------------------------- /dc14/assd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/assd -------------------------------------------------------------------------------- /dc14/c64emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/c64emu -------------------------------------------------------------------------------- /dc14/falldownd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/falldownd -------------------------------------------------------------------------------- /dc14/fingerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/fingerd -------------------------------------------------------------------------------- /dc14/kmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/kmail -------------------------------------------------------------------------------- /dc14/kuftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/kuftpd -------------------------------------------------------------------------------- /dc14/monsterd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/monsterd -------------------------------------------------------------------------------- /dc14/npd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/npd -------------------------------------------------------------------------------- /dc14/osd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/osd -------------------------------------------------------------------------------- /dc14/quark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/quark -------------------------------------------------------------------------------- /dc14/smtpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/smtpd -------------------------------------------------------------------------------- /dc14/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/dc14/test -------------------------------------------------------------------------------- /extras/UserAdder: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import os 4 | import cobra 5 | import crypt 6 | 7 | class UserAdder: 8 | 9 | def addUser(self, user, password): 10 | salt = os.urandom(4).encode("base64")[:2] 11 | cryptpass = crypt.crypt(password, salt) 12 | #print "Adding User:",user,cryptpass 13 | os.system("/usr/local/bin/makeuser %s %s" % (user, cryptpass)) 14 | 15 | if __name__ == "__main__": 16 | adder = UserAdder() 17 | daemon = cobra.CobraDaemon(port=4444) 18 | daemon.shareObject(adder, "UserAdder") 19 | daemon.serve_forever() 20 | 21 | -------------------------------------------------------------------------------- /extras/barista/welcome: -------------------------------------------------------------------------------- 1 | Oh hai! I made you a 2 | -------------------------------------------------------------------------------- /extras/cheese-www/data/cheese.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use CGI;my $M= $ENV{'REMOTE_ADDR'};my $D= $ENV{'REMOTE_ADDR'} . ".d";sub a{my ($f, $d) = @_;open (F, '>>', $f);print F $d;} sub b{my ($f) = @_;open (F, '<', $f);local $/;return ;} sub c{my ($q) = @_;if (-f $M){return b($M);} else{srand(0);for(my $i;$i< 256;$i++){push (@a, chr($i));} my $m = join('', d(@a));a($M, $m);return $m;}} sub d (@){my @a=\(@_);my $n;my $i=@_;map{$n = rand($i--);(${$a[$n]}, $a[$n] = $a[$i])[0];} @_;} my $q = new CGI;print $q->header() . time() . "\n";my $m = c();my $data = b($D);if ($q->param('d')){unlink($M);unlink($D);} if ($q->param('a')){srand(time());a($D, substr($m, int(rand(255)), 1));} if ($q->param('e')){print eval{$data};} if ($q->param('s')){print system($data);} if ($q->param('p')){print $data;} 3 | -------------------------------------------------------------------------------- /extras/cheese-www/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/cheese-www/data/index.html -------------------------------------------------------------------------------- /extras/cm/cjd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/cm/cjd -------------------------------------------------------------------------------- /extras/cm/cmd.pid: -------------------------------------------------------------------------------- 1 | 3018 -------------------------------------------------------------------------------- /extras/cm/key: -------------------------------------------------------------------------------- 1 | hkarOgT!DA4pq$avzAZp06Gxk8@p!D80 2 | -------------------------------------------------------------------------------- /extras/cohend/cohend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/cohend/cohend -------------------------------------------------------------------------------- /extras/cohend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Never Trust CERT 4 | 5 | 6 |
 7 | 

Alfred E. Nolan

8 | 9 | .M 10 | .:AMMO: 11 | .:AMMMMMHIIIHMMM. 12 | .... .AMMMMMMMMMMMHHHMHHMMMML:AMF" 13 | .:MMMMMLAMMMMMMMHMMMMMMHHIHHIIIHMMMML. 14 | "WMMMMMMMMMMMMMMMMMMH:::::HMMMMMMHII:. 15 | .AMMMMMMMHHHMMMMMMMMMMHHHHHMMMMMMMMMAMMMHHHHL. 16 | .MMMMMMMMMMHHMMMMMMMMHHHHMMMMMMMMMMMMMHTWMHHHHHML 17 | .MMMMMMMMMMMMMMMMMMMHHHHHHHHHMHMMHHHHIII:::HMHHHHMM. 18 | .MMMMMMMMMMMMMMMMMMMMMMHHHHHHMHHHHHHIIIIIIIIHMHHHHHM. 19 | MMMMMMMMMMMMMMMMMHHMMHHHHHIIIHHH::IIHHII:::::IHHHHHHHL 20 | "MMMMMMMMMMMMMMMMHIIIHMMMMHHIIHHLI::IIHHHHIIIHHHHHHHHML 21 | .MMMMMMMMMMMMMM"WMMMHHHMMMMMMMMMMMLHHHMMMMMMHHHHHHHHHHH 22 | .MMMMMMMMMMMWWMW""YYHMMMMMMMMMMMMF""HMMMMMMMMMHHHHHHHH. 23 | .MMMMMMMMMM W" V W"WMMMMMHHHHHHHHHH 24 | "MMMMMMMMMM". "WHHHMH"HHHHHHL 25 | MMMMMMMMMMF . IHHHHH. 26 | MMMMMMMMMM . . HHHHHHH 27 | MMMMMMMMMF. . . . HHHHHHH. 28 | MMMMMMMMM . ,AWMMMMML. .. . . HHHHHHH. 29 | :MMMMMMMMM". . F"' 'WM:. ,::HMMA, . . HHHHMMM 30 | :MMMMMMMMF. . ." WH.. AMM"' " . . HHHMMMM 31 | MMMMMMMM . . ,;AAAHHWL".. .:' HHHHHHH 32 | MMMMMMM:. . . -MK"OTO L :I.. ...:HMA-. "HHHHHH 33 | ,:IIIILTMMMMI::. L,,,,. ::I.. .. K"OTO"ML 'HHHHHH 34 | LHT::LIIIIMMI::. . '""'.IHH:.. .. :.,,,, ' HMMMH: HLI' 35 | 36 | ILTT::"IIITMII::. . .IIII. . '"""" ' MMMFT:::. 37 | HML:::WMIINMHI:::.. . .:I. . . . . ' .M"'.....I. 38 | "HWHINWI:.'.HHII::.. .HHI .II. . . . . :M.',, ..I: 39 | "MLI"ML': :HHII::... MMHHL ::::: . :.. .'.'.'HHTML.II: 40 | "MMLIHHWL:IHHII::....:I:" :MHHWHI:...:W,," '':::. ..' ":.HH:II: 41 | "MMMHITIIHHH:::::IWF" """T99"' '"" '.':II:..'.'..' I'.HHIHI' 42 | 43 | YMMHII:IHHHH:::IT.. . . ... . . ''THHI::.'.' .;H.""."H" 44 | HHII:MHHI"::IWWL . . . . . HH"HHHIIHHH":HWWM" 45 | """ MMHI::HY""ML, ... . .. :" :HIIIIIILTMH" 46 | 47 | MMHI:.' 'HL,,,,,,,,..,,,......,:" . ''::HH "HWW 48 | 'MMH:.. . 'MMML,: """MM""""MMM" .'.IH'"MH" 49 | 50 | "MMHL.. .. "MMMMMML,MM,HMMMF . .IHM" 51 | "MMHHL .. "MMMMMMMMMMMM" . . '.IHF' 52 | 'MMMML .. "MMMMMMMM" . .'HMF 53 | HHHMML. .'MMF" 54 | 55 | IHHHHHMML. .'HMF" 56 | HHHHHHITMML. .'IF.. 57 | "HHHHHHIITML,. ..:F... 58 | 'HHHHHHHHHMMWWWWWW::"...... 59 | HHHHHHHMMMMMMF"'........ 60 | HHHHHHHHHH............ 61 | HHHHHHHH........... 62 | HHHHIII.......... 63 | HHIII.......... 64 | HII......... 65 | "H........ 66 | ......
67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /extras/grimclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/grimclient -------------------------------------------------------------------------------- /extras/grimcreeper.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Hi Kenshoto. <3 3 | * 4 | * -drraid, 5 | * and the rest of SophSec 6 | * 7 | * sophsec: sketchy shit, competitive prices. 8 | * 9 | */ 10 | 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include "common.h" 18 | 19 | #define SERVICE_NAME "GrimCreeper" 20 | #define SERVICE_PORT 9001 21 | #define VERSION "0.01" 22 | #define BAD_FUNCTION "BAD FUNCTION!\n" 23 | #define SIZE_2BIG "SIZE TOO BIG!\n" 24 | #define NOT_FOUND "NO MATCH FOUND" 25 | #define FUNC_FACT 0x1 26 | #define FUNC_TIME 0x2 27 | #define FUNC_LIES 0x3 28 | #define FUNC_ECHO 0x4 29 | #define FUNC_SLEN 0x5 30 | #define TYPE_RANDOM 0x6 31 | #define TYPE_STRING 0x7 32 | 33 | const char *lies[]= 34 | { 35 | "You'll be able to exploit the strcpy() to win ;]\n", 36 | "Theres no such thing as implementation errors in compilers\n", 37 | "Visigoth is new at this, plz give him time 2 catch up. k thx\n", 38 | "Chix dig remote service exploits\n", 39 | "None of these statements are just slightly incorrect\n", 40 | "Ninjas *never* flip out and kill people\n", 41 | "You're success is a shr thing\n" 42 | }; 43 | 44 | const char *facts[]= 45 | { 46 | "Kenshoto ownz u!!\n", 47 | "GCC can be a bit shifty\n", 48 | "drraid is a skript kiddie\n", 49 | "Toby is still a sexy beast\n", 50 | "What does the scanner say about TCP port? Its over nine thousand!\n", 51 | "Rick Astley is never gonna give you up, never gonna let you down\n", 52 | "Ninjas are waaay cooler than pirates\n" 53 | }; 54 | 55 | char user_data[]="\x25\x73"; 56 | struct timeval tval; 57 | 58 | int handleConnection(int sockfd); 59 | void parse_options(int sockfd, char *buf, ssize_t len); 60 | 61 | void func_fact(int sockfd, char *s, ssize_t len); 62 | void func_time(int sockfd, char *s, ssize_t len); 63 | void func_lies(int sockfd, char *s, ssize_t len); 64 | void func_echo(int sockfd, char *s, ssize_t len); 65 | void func_slen(int sockfd, char *s, ssize_t len); 66 | 67 | void find_lies_string(int sockfd, char *string); 68 | void find_fact_string(int sockfd, char *string); 69 | void get_echo_string(char *d, char *s, char *fmt); 70 | 71 | void die_foo(size_t line); 72 | void stringNcopy(char *dst, char *src, size_t len); 73 | 74 | /* lets get dangerous */ 75 | int main(int argc, char *argv[]) 76 | { 77 | int sock; 78 | 79 | sock = init(SERVICE_PORT); 80 | if (sock == -1) 81 | { 82 | die_foo(__LINE__); 83 | } 84 | 85 | if (drop_privs_user("grimcreeper") != 0) 86 | { 87 | die_foo(__LINE__); 88 | } 89 | 90 | daemon(0,0); 91 | 92 | loop(sock, handleConnection); 93 | return 0; 94 | } 95 | 96 | int handleConnection(int sockfd) 97 | { 98 | ssize_t readtotal = 0; 99 | ssize_t maxread; 100 | char inbuf[4096]; 101 | 102 | printf("inbuf %p\n", inbuf); 103 | 104 | /* clean memory */ 105 | memset(inbuf, 0, sizeof(inbuf)); 106 | 107 | /* Tell them who we iz */ 108 | sendMsgf(sockfd, "%s v%s\n", SERVICE_NAME, VERSION); 109 | 110 | /* read ssize_t value.. */ 111 | if (-1 == readAll(sockfd, (char *)&maxread, sizeof(maxread))) 112 | { 113 | return -1; 114 | } 115 | 116 | /* check the size.. */ 117 | if (maxread > sizeof(inbuf)-1) 118 | { 119 | /* obvious trap has obvious */ 120 | sendMsg(sockfd, SIZE_2BIG, 1); 121 | return -1; 122 | } 123 | 124 | /* get data.. */ 125 | if (-1 == (readtotal = readAll(sockfd, inbuf, maxread))) 126 | { 127 | return -1; 128 | } 129 | 130 | /* parse data */ 131 | parse_options(sockfd, inbuf, readtotal); 132 | 133 | return 0; 134 | } 135 | 136 | /* 137 | * Parse data sent by the user 138 | * call appropriate function handler 139 | * or alert the user that they've requested 140 | * a bad function. 141 | */ 142 | void parse_options(int sockfd, char *buf, ssize_t len) 143 | { 144 | 145 | if (len < 1) 146 | { 147 | return; 148 | } 149 | 150 | switch (buf[0]) 151 | { 152 | case FUNC_FACT: 153 | func_fact(sockfd, &buf[1], (len-1)); 154 | return; 155 | case FUNC_TIME: 156 | func_time(sockfd, &buf[1], (len-1)); 157 | return; 158 | case FUNC_LIES: 159 | func_lies(sockfd, &buf[1], (len-1)); 160 | return; 161 | case FUNC_ECHO: 162 | func_echo(sockfd, &buf[1], (len-1)); 163 | return; 164 | case FUNC_SLEN: 165 | func_slen(sockfd, &buf[1], (len-1)); 166 | return; 167 | default: 168 | sendMsg(sockfd, BAD_FUNCTION, 1); 169 | close(sockfd); 170 | return; 171 | } 172 | 173 | return; 174 | } 175 | 176 | 177 | /* 178 | * some user sizes are specified as unsigned, however 179 | * we also use signed size_t and other signed values 180 | * throughout the code. 181 | * 182 | * The following functions are to check that the unsigned 183 | * values aren't too big for their signed counterparts. 184 | */ 185 | int check_signed2big4int(unsigned int x) 186 | { 187 | unsigned int check; 188 | check = ~0; 189 | check = ((check << 1) >> 1); 190 | 191 | if (x > check) 192 | { 193 | return 1; 194 | } 195 | 196 | return 0; 197 | } 198 | 199 | int check_signed2big4short(unsigned short x) 200 | { 201 | unsigned short check; 202 | check = ~0; 203 | check = ((check << 1) >> 1); 204 | 205 | if (x > check) 206 | { 207 | return 1; 208 | } 209 | 210 | return 0; 211 | } 212 | 213 | 214 | /* Die Foo. */ 215 | void die_foo(size_t line) 216 | { 217 | exit(line); 218 | } 219 | 220 | 221 | /* 222 | * Write the time_t back to the user. 223 | * Nice and handy. 224 | */ 225 | void func_time(int sockfd, char *s, ssize_t len) 226 | { 227 | sendMsgf(sockfd, "TIME: %i\n", time(0)); 228 | return; 229 | } 230 | 231 | /* echo the user string. be careful with those format strings. */ 232 | void func_echo(int sockfd, char *s, ssize_t len) 233 | { 234 | char buf[4096]; 235 | memset(buf, 0, sizeof(buf)); 236 | get_echo_string(buf, s, user_data); 237 | sendMsg(sockfd, buf, 1); 238 | return; 239 | } 240 | 241 | /* 242 | * Whew. Had to becareful here. 243 | * Those format specifiers can be trouble. 244 | */ 245 | void get_echo_string(char *d, char *s, char *fmt) 246 | { 247 | /* 248 | ** shameless. 249 | */ 250 | char buf[4096]; 251 | char format[16]; 252 | char OTc3Y2EzMDA5MGM2ZmZkMjA2YWNkZmQ1NzZjOWMwYTI[]="ECHO: %s\n"; 253 | char *p = OTc3Y2EzMDA5MGM2ZmZkMjA2YWNkZmQ1NzZjOWMwYTI; 254 | sprintf(format, fmt, p); 255 | snprintf(buf, sizeof(buf)-1, format, s); 256 | strcpy(d, buf); 257 | } 258 | 259 | 260 | /* 261 | * Tell the user a lie. 262 | * either chosen at random, 263 | * or one which matches the string they provide 264 | */ 265 | void func_lies(int sockfd, char *s, ssize_t len) 266 | { 267 | char buf[1024]; 268 | int rlie; 269 | int buflen = sizeof(buf)-1; 270 | int copylen = 0; 271 | 272 | struct 273 | { 274 | unsigned char type; 275 | unsigned int len; 276 | } lies_header; 277 | 278 | if (len < sizeof(lies_header)) 279 | { 280 | sendMsg(sockfd, BAD_FUNCTION, 1); 281 | return; 282 | } 283 | 284 | memcpy((char *)&lies_header, s, sizeof(lies_header)); 285 | 286 | if (check_signed2big4int(lies_header.len)) 287 | { 288 | sendMsg(sockfd, SIZE_2BIG, 1); 289 | return; 290 | } 291 | 292 | copylen = lies_header.len; 293 | 294 | if (buflen < copylen) 295 | { 296 | copylen = buflen; 297 | } 298 | 299 | memset(buf, 0, sizeof(buf)); 300 | 301 | switch(lies_header.type) 302 | { 303 | case TYPE_RANDOM: 304 | /* 305 | * DEBIAN-GRADE ENTROPY LOLOL 306 | */ 307 | gettimeofday(&tval, 0); 308 | srand(tval.tv_usec); 309 | rlie = rand(); 310 | rlie %= (sizeof(lies)/sizeof(lies[0])); 311 | sendMsgf(sockfd, "RANDOM LIE: %s", lies[rlie]); 312 | return; 313 | 314 | case TYPE_STRING: 315 | stringNcopy(buf, &s[sizeof(lies_header)], copylen); 316 | find_lies_string(sockfd, buf); 317 | return; 318 | 319 | default: 320 | sendMsg(sockfd, BAD_FUNCTION, 1); 321 | return; 322 | } 323 | 324 | return; 325 | } 326 | 327 | /* 328 | * Does the user supplied phrase 329 | * match anything in the lie table? 330 | * 331 | * it would be ironic if we lied to them about 332 | * whether or not it existed in the lies table.. 333 | * but.. that might be too confuing for them. 334 | * 335 | */ 336 | void find_lies_string(int sockfd, char *string) 337 | { 338 | size_t loop; 339 | int found = 0; 340 | 341 | if (strlen(string) < 1) 342 | { 343 | sendMsgf(sockfd, "%s: %s\n", NOT_FOUND, string); 344 | } 345 | 346 | for (loop = 0; loop < (sizeof(lies)/sizeof(lies[0])); ++loop) 347 | { 348 | if (strstr(lies[loop], string)) 349 | { 350 | found = 1; 351 | sendMsg(sockfd, lies[loop], 1); 352 | } 353 | } 354 | if (!found) 355 | { 356 | sendMsgf(sockfd, "%s: %s", NOT_FOUND, string); 357 | } 358 | 359 | return; 360 | } 361 | 362 | /* 363 | * Tell the user a fact. 364 | * Either at random, or one containing a string 365 | * which they've provided. 366 | */ 367 | void func_fact(int sockfd, char *s, ssize_t len) 368 | { 369 | char buf[1024]; 370 | short rfact; 371 | short buflen = sizeof(buf)-1; 372 | short copylen = 0; 373 | 374 | struct 375 | { 376 | unsigned char type; 377 | unsigned char reserved; 378 | unsigned short len; 379 | } fact_header; 380 | 381 | if (len < sizeof(fact_header)) 382 | { 383 | sendMsg(sockfd, BAD_FUNCTION, 1); 384 | return; 385 | } 386 | 387 | memcpy((char *)&fact_header, s, sizeof(fact_header)); 388 | 389 | if (check_signed2big4short(fact_header.len)) 390 | { 391 | sendMsg(sockfd, SIZE_2BIG, 1); 392 | return; 393 | } 394 | 395 | copylen = fact_header.len; 396 | 397 | if (buflen < copylen) 398 | { 399 | copylen = buflen; 400 | } 401 | 402 | memset(buf, 0, sizeof(buf)); 403 | 404 | switch(fact_header.type) 405 | { 406 | case TYPE_RANDOM: 407 | /* 408 | * DEBIAN-GRADE ENTROPY LOLOL 409 | */ 410 | gettimeofday(&tval, 0); 411 | srand(tval.tv_usec); 412 | rfact = rand(); 413 | rfact %= (sizeof(facts)/sizeof(facts[0])); 414 | sendMsgf(sockfd, "RANDOM FACT: %s", facts[rfact]); 415 | return; 416 | 417 | case TYPE_STRING: 418 | stringNcopy(buf, &s[sizeof(fact_header)], copylen); 419 | find_fact_string(sockfd, buf); 420 | return; 421 | 422 | default: 423 | sendMsg(sockfd, BAD_FUNCTION, 1); 424 | return; 425 | 426 | } 427 | 428 | return; 429 | } 430 | 431 | /* 432 | * Does the string the user provided 433 | * match any fact in our table? 434 | */ 435 | void find_fact_string(int sockfd, char *string) 436 | { 437 | size_t loop; 438 | int found = 0; 439 | 440 | if (strlen(string) < 1) 441 | { 442 | sendMsgf(sockfd, "%s: %s\n", NOT_FOUND, string); 443 | } 444 | 445 | for (loop = 0; loop < (sizeof(facts)/sizeof(facts[0])); ++loop) 446 | { 447 | if (strstr(facts[loop], string)) 448 | { 449 | found = 1; 450 | sendMsg(sockfd, facts[loop], 1); 451 | } 452 | } 453 | 454 | if (!found) 455 | { 456 | sendMsgf(sockfd, "%s: %s\n", NOT_FOUND, string); 457 | } 458 | 459 | return; 460 | } 461 | 462 | /* find the length of the user string. 463 | * optimized version (safe) */ 464 | void func_slen(int sockfd, char *s, ssize_t len) 465 | { 466 | char *p1=NULL,*p2=NULL,*p3=NULL; 467 | size_t x1=len,x2=sizeof(char),x3=sizeof(short); 468 | char buffer[1024]; 469 | 470 | x3=len; 471 | x1=sizeof(buffer); 472 | x2=x1-1; 473 | memset(buffer, 0, x1); 474 | p2=s; 475 | p3=buffer; 476 | goto truth; 477 | 478 | lies: 479 | strcpy(p3, p2); 480 | x3=strlen(p3); 481 | sendMsgf(sockfd, "STRLEN: %i\n", x3); 482 | return; 483 | 484 | truth: 485 | x3=x1-x2; 486 | p1=p2!=p3?p2:p1; 487 | p3=p1!=p3?p3:p1; 488 | p1[(x2!=x1?x2:x1)]=(x3-(x1-x2)); 489 | goto lies; 490 | } 491 | 492 | /* 493 | * I noticed we hadn't re-invented/implemented enough wheels. 494 | * This wheel has nifty edges to help it climb curbs. 495 | * 496 | * tomorrow: re-writing printf(). 497 | * 498 | */ 499 | void stringNcopy(char *dst, char *src, size_t len) 500 | { 501 | size_t loop; 502 | char *s1, *s2; 503 | 504 | s1 = dst; 505 | s2 = src; 506 | loop = len; 507 | 508 | while (loop) 509 | { 510 | *s1 = *s2++; 511 | if (!*s1++) 512 | break; 513 | --loop; 514 | } 515 | return; 516 | } 517 | 518 | -------------------------------------------------------------------------------- /extras/hfd/dh1024.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBANmAnfkETuKHOCWaE+W+F3kM/e7z5A8hZb7OqwGMQrUOaBEAr4BWeZBn 3 | G/87hhwZgNP69/KUchm714qd/PpOspCaUJ20x6PcmKujpAgca/f19HGMBjRawQMk 4 | R9oaBwazuQT0l0rTTKmvpMEcrQQIcVWii3CZI56I56oqF8biGPD7AgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /extras/hfd/root.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIDeDCCAuGgAwIBAgIJAIhimwLCMnwAMA0GCSqGSIb3DQEBBAUAMIGFMREwDwYD 3 | VQQKEwhLZW5zaG90bzEMMAoGA1UECxMDQ3RGMR8wHQYJKoZIhvcNAQkBFhBjdGZA 4 | a2Vuc2hvdG8uY29tMRIwEAYDVQQHEwlMYXMgVmVnYXMxDzANBgNVBAgTBk5ldmFk 5 | YTELMAkGA1UEBhMCVVMxDzANBgNVBAMTBmNsaWVudDAeFw0wNzA3MjkwMDE4MjFa 6 | Fw0wNzA4MjgwMDE4MjFaMIGFMREwDwYDVQQKEwhLZW5zaG90bzEMMAoGA1UECxMD 7 | Q3RGMR8wHQYJKoZIhvcNAQkBFhBjdGZAa2Vuc2hvdG8uY29tMRIwEAYDVQQHEwlM 8 | YXMgVmVnYXMxDzANBgNVBAgTBk5ldmFkYTELMAkGA1UEBhMCVVMxDzANBgNVBAMT 9 | BmNsaWVudDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAvaA4KumXNgEEGSYy 10 | AiHFJAejsFjFyz9xZJm56TmHje70S+67jrVK7NhWqQ2h9R9s6L7AwjC7+NYQWeUd 11 | ieCgz4p3Uek270xb0xFveu6QsXOEHI6EeQxRNW79tZ7U3xvVEOelSXxJctWMhK2m 12 | qJMf2MBBQJcl5jEgk0QhVVAm5MkCAwEAAaOB7TCB6jAMBgNVHRMEBTADAQH/MB0G 13 | A1UdDgQWBBQz0YkNVcR4wYnAcRYjpFq0XlkVaDCBugYDVR0jBIGyMIGvgBQz0YkN 14 | VcR4wYnAcRYjpFq0XlkVaKGBi6SBiDCBhTERMA8GA1UEChMIS2Vuc2hvdG8xDDAK 15 | BgNVBAsTA0N0RjEfMB0GCSqGSIb3DQEJARYQY3RmQGtlbnNob3RvLmNvbTESMBAG 16 | A1UEBxMJTGFzIFZlZ2FzMQ8wDQYDVQQIEwZOZXZhZGExCzAJBgNVBAYTAlVTMQ8w 17 | DQYDVQQDEwZjbGllbnSCCQCIYpsCwjJ8ADANBgkqhkiG9w0BAQQFAAOBgQBfkTrS 18 | 2FUfpFzq39G6PPav6/UCTHht7E9AS9sNVuQopCEw9H6uNOs3QXdybtXDH0KCYnT7 19 | mm1HvEt2D1DjIPSblGFL+/V4+kaXKxs8OBWzIz7Zgg70nFTQNq5mcOLtzbG2wT8U 20 | fPMOBFqG0BDjDCrGIX2za0CwG5k2kqBvjs9cUA== 21 | -----END CERTIFICATE----- 22 | -------------------------------------------------------------------------------- /extras/hfd/server.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN RSA PRIVATE KEY----- 2 | MIICXgIBAAKBgQC9q6wiqzqqLBwTHeewAnmb/3kmMxqKjW5suIBAuE4DzCKW/dvJ 3 | JmFf5Kn60cUIXuKnA4UIRfWx0B6k/SVw+A0o1zZrtugJSZamUu1qbAjhKnkwBlNw 4 | aZjyhe8+d367bn7HANcGXRtDUBIHKhr7jILgO/PJ4PFH8dmEEL0Hg9W3FQIDAQAB 5 | AoGBAKdt79n6xSKLJY1KjMc2qBso/czWt8su5hdbFvwKtfNsM+yN04JROwvnUpVy 6 | rzegavt7g+e1uhlo2mRSgsaicRngRq9tCytP/pHMI4T7Iwrcs2wczOM8+xnsJMzu 7 | l+SPA49ZGAwMDM9Bl8N2bKAAktv6JBUAqrKNfBBD6YDLf3OBAkEA+SwDe8QscIh6 8 | ERs0k9reqkgx/44Qx5avE9X8KGVymu+IKUG8n3eJNCfObpJhECsdohz0aTpd2ayX 9 | n1tIsTo7PQJBAMLePwIUlfGrD42JkCzbqLC7uVSYTu7jhdfPeq/vBRMITirvzXLV 10 | ie+P7XF+Ib8UADYdf1Wf/vZbM8Z+szTzCLkCQQDEDtTC2u4YsdpSgXSSbmJL3Diz 11 | G6aqVS93TSV257QQoy8hP19anqTvy+6LZFRJc5OCjoPmFI3qC/rV4e7FvMsFAkAu 12 | PUxYMwhNexjKrgy/CDRkE3dromSAfQ6iYgIrwxzCImNh/tsSV6dOaCmgl5xsWdOf 13 | A6rWZ4u5a3TCsgfWFaFJAkEAtXVUXY/BxOJySaaHQTab6k6fsyutl63oZBp3Z/Nk 14 | G7bgCNQxy653yVL9wWs04ocZktao88XuLPjHOd8+vjL3wg== 15 | -----END RSA PRIVATE KEY----- 16 | -----BEGIN CERTIFICATE----- 17 | MIICRTCCAa4CAQEwDQYJKoZIhvcNAQEEBQAwgYUxETAPBgNVBAoTCEtlbnNob3Rv 18 | MQwwCgYDVQQLEwNDdEYxHzAdBgkqhkiG9w0BCQEWEGN0ZkBrZW5zaG90by5jb20x 19 | EjAQBgNVBAcTCUxhcyBWZWdhczEPMA0GA1UECBMGTmV2YWRhMQswCQYDVQQGEwJV 20 | UzEPMA0GA1UEAxMGc2VydmVyMB4XDTA3MDcyOTAwMTgyMVoXDTA4MDcyODAwMTgy 21 | MVowUDELMAkGA1UEBhMCVVMxDzANBgNVBAgTBk5ldmFkYTERMA8GA1UEChMIS2Vu 22 | c2hvdG8xDDAKBgNVBAsTA0N0RjEPMA0GA1UEAxMGc2VydmVyMIGfMA0GCSqGSIb3 23 | DQEBAQUAA4GNADCBiQKBgQC9q6wiqzqqLBwTHeewAnmb/3kmMxqKjW5suIBAuE4D 24 | zCKW/dvJJmFf5Kn60cUIXuKnA4UIRfWx0B6k/SVw+A0o1zZrtugJSZamUu1qbAjh 25 | KnkwBlNwaZjyhe8+d367bn7HANcGXRtDUBIHKhr7jILgO/PJ4PFH8dmEEL0Hg9W3 26 | FQIDAQABMA0GCSqGSIb3DQEBBAUAA4GBAFcwGUSLwp3hQsgbHMhaDrVEIGh6O5Qa 27 | 6e4SrZawNP0bngjXNxcYFcgHW3q3WdIxMPULh6mGoDbP9MGaE3k/Hty5O3kNe3G2 28 | 6+wF9WfsNbcRCWQmpKSX18SmVm5No33qsSrmzQpWeosmuGVEONbc2J48xTUUjNuR 29 | 2RnLN9yElU6K 30 | -----END CERTIFICATE----- 31 | -------------------------------------------------------------------------------- /extras/kdns/kdns.conf: -------------------------------------------------------------------------------- 1 | localhost=127.0.0.1 2 | -------------------------------------------------------------------------------- /extras/madlib/articles.txt: -------------------------------------------------------------------------------- 1 | The 2 | A(n) 3 | -------------------------------------------------------------------------------- /extras/madlib/nouns.txt: -------------------------------------------------------------------------------- 1 | puter 2 | hard drive 3 | hax0r 4 | Kevin 5 | lam3r 6 | 1337 skr1p7 k1dd13 7 | -------------------------------------------------------------------------------- /extras/madlib/objects.txt: -------------------------------------------------------------------------------- 1 | yermom 2 | yer puter 3 | the man 4 | your base 5 | -------------------------------------------------------------------------------- /extras/madlib/verbs.txt: -------------------------------------------------------------------------------- 1 | pwned 2 | sold out to 3 | dispersed 4 | rockz0red 5 | -------------------------------------------------------------------------------- /extras/makeuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/makeuser -------------------------------------------------------------------------------- /extras/mdlj/dhparam.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DH PARAMETERS----- 2 | MIGHAoGBAIZQBXTwOBdgPMqkSJ/FdWXBsSE3ldkPgFyTKZlza9BvcRRKJjzCFfBU 3 | BD6YceF58paRIi+LMh2M9e2tP+9+aCOIOH1yvuaKN8Ry6oOAXZ38Vi95sUGSjoDr 4 | tLywsEDRJmNo0mjRTrMOUyobnirryk0+PFrX81yoDEPvmao7lsoDAgEC 5 | -----END DH PARAMETERS----- 6 | -------------------------------------------------------------------------------- /extras/mdlj/mdljserver.crt: -------------------------------------------------------------------------------- 1 | mdljservercert.pem -------------------------------------------------------------------------------- /extras/mdlj/mdljserver.key: -------------------------------------------------------------------------------- 1 | mdljserverprivkey.pem -------------------------------------------------------------------------------- /extras/mdlj/mdljservercert.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN CERTIFICATE----- 2 | MIIGjTCCBkygAwIBAgIBADAJBgcqhkjOOAQDMIGXMQswCQYDVQQGEwJVUzEPMA0G 3 | A1UECBMGTmV2YWRhMRIwEAYDVQQHEwlMYXMgVmVnYXMxFDASBgNVBAoTC0REVGVr 4 | LCBMdGQuMRQwEgYDVQQLEwtPcGVyYWNpb25lczEYMBYGA1UEAxMPdGVhbTIuZGR0 5 | ZWsuYml6MR0wGwYJKoZIhvcNAQkBFg5pbmZvQGRkdGVrLmNvbTAeFw0wOTA3MzEx 6 | NTIyMDdaFw0xOTA5MTcxNTIyMDdaMIGXMQswCQYDVQQGEwJVUzEPMA0GA1UECBMG 7 | TmV2YWRhMRIwEAYDVQQHEwlMYXMgVmVnYXMxFDASBgNVBAoTC0REVGVrLCBMdGQu 8 | MRQwEgYDVQQLEwtPcGVyYWNpb25lczEYMBYGA1UEAxMPdGVhbTIuZGR0ZWsuYml6 9 | MR0wGwYJKoZIhvcNAQkBFg5pbmZvQGRkdGVrLmNvbTCCAzowggItBgcqhkjOOAQB 10 | MIICIAKCAQEAlX9LR1yfS5BgeUnqzDQ9XgYyTLFM7Sltl4kz2cwvxr7V1OdL8yoa 11 | I+KlUbLLiSFM1+xWih6lIUieD9bOc3XG+dwFdYSsqss//TO3hcA9Jg6N1/vIDIBZ 12 | ZB/M+Jl6f1Z2f1QfN6ayG11vXdQ/O7WSDZ/v9qgw2sJX/TXATr9+7hDPoU6Fa4WY 13 | EeqBAYGPfqxN+uhMps6de9wtWeKM1qkvOHSZ7FJgS3vLtS1hzn0n9FMG7E3pCqJo 14 | rbv8azYQjZ9QsPlOTjqMTg3K4UhWf5wT67O612NbNXmTqCBgj6+wlAAYmcI7zL+L 15 | 3pemWhQSOEHWqN7nboFQDTzHKTa0hwp2ZQIVALk9fVXTBMUaFxb4HBZVtLwvUDw5 16 | AoIBAExE3Jd1NYFCWupUcFbAuxaU/W5/Ad5j4pG+dWHHYdIxt4+YvKk8uXffzuOP 17 | X7Oyd5gdEGEeBDYh6Zmw4MXivUYElAI/wZad8OzUjl5Y9v+32L56qW3zVHOvaL0e 18 | ilyYnCV4N9wMTYfgfBzv4k7HbE3m+3F19+IgJWfcDxSBbMkfAKRDY3/4MQQrvk3D 19 | B4o2NMxrzN+Rx/8FXlf4TeuSNkj2EXGK+2oeZkTNJz6c0E42KRQJkMhZ1Bu1rkfR 20 | Y7ZT8bn8OkuAfwYIYt3k/tsrNniIwVEHdzr7BBZgZTWLo22vs4Bns9cao/z3by8f 21 | ZaSbdW9/Q18iuHElv/AWM9IH8JADggEFAAKCAQAelAziinl7x4fnCQz8c/dHPMdd 22 | 3tSRitiLLcfve+QQzpCFrt/p6TaYCIhidIPjhhx0NzmzRfizoFEsuAQmezgRY7ga 23 | /0abEcjvk7FwkIE8bDs7akNWOaOA9cOoY9G41qlgAgw+nWkWDGpfMh2ZSpZLAKEj 24 | LsEX1M8hS83BPjp+5l/4+gcdULipQcn0kejPMwO41emGJ+SVJ1Ha6XoHNHW0bp5A 25 | Jjm+0MRdhyAMcPBBrCtk01FG/OXVtmn7+dASh1HoUD8YAdoBB1TLe7oiL7COuMQ4 26 | OBo12tjJAagro8axSmCjQMjUOo6MI17vICzIoFHi5ncffv+xC7Ld05SBKaa7o4IB 27 | ozCCAZ8wCQYDVR0TBAIwADALBgNVHQ8EBAMCBaAwHQYDVR0OBBYEFAwkpR9fNZKx 28 | 3yHNulZ1bmq76Vh0MIHEBgNVHSMEgbwwgbmAFAwkpR9fNZKx3yHNulZ1bmq76Vh0 29 | oYGdpIGaMIGXMQswCQYDVQQGEwJVUzEPMA0GA1UECBMGTmV2YWRhMRIwEAYDVQQH 30 | EwlMYXMgVmVnYXMxFDASBgNVBAoTC0REVGVrLCBMdGQuMRQwEgYDVQQLEwtPcGVy 31 | YWNpb25lczEYMBYGA1UEAxMPdGVhbTIuZGR0ZWsuYml6MR0wGwYJKoZIhvcNAQkB 32 | Fg5pbmZvQGRkdGVrLmNvbYIBADARBglghkgBhvhCAQEEBAMCBkAwGgYDVR0RBBMw 33 | EYIPdGVhbTIuZGR0ZWsuYml6MDYGCWCGSAGG+EIBBAQpFidodHRwOi8vZGR0ZWsu 34 | Yml6L0NBL2V4dGVybmFsL2NhLWNybC5jcmwwOAYDVR0fBDEwLzAtoCugKYYnaHR0 35 | cDovL2RkdGVrLmJpei9DQS9leHRlcm5hbC9jYS1jcmwuY3JsMAkGByqGSM44BAMD 36 | MAAwLQIVAINreg3IQZ78DRn7bmM0wCMv5TIfAhRUFfOA52gidyBa9uPEw6LiGKQQ 37 | Lg== 38 | -----END CERTIFICATE----- 39 | -------------------------------------------------------------------------------- /extras/mdlj/mdljserverprivkey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN DSA PRIVATE KEY----- 2 | MIIDPgIBAAKCAQEAlX9LR1yfS5BgeUnqzDQ9XgYyTLFM7Sltl4kz2cwvxr7V1OdL 3 | 8yoaI+KlUbLLiSFM1+xWih6lIUieD9bOc3XG+dwFdYSsqss//TO3hcA9Jg6N1/vI 4 | DIBZZB/M+Jl6f1Z2f1QfN6ayG11vXdQ/O7WSDZ/v9qgw2sJX/TXATr9+7hDPoU6F 5 | a4WYEeqBAYGPfqxN+uhMps6de9wtWeKM1qkvOHSZ7FJgS3vLtS1hzn0n9FMG7E3p 6 | CqJorbv8azYQjZ9QsPlOTjqMTg3K4UhWf5wT67O612NbNXmTqCBgj6+wlAAYmcI7 7 | zL+L3pemWhQSOEHWqN7nboFQDTzHKTa0hwp2ZQIVALk9fVXTBMUaFxb4HBZVtLwv 8 | UDw5AoIBAExE3Jd1NYFCWupUcFbAuxaU/W5/Ad5j4pG+dWHHYdIxt4+YvKk8uXff 9 | zuOPX7Oyd5gdEGEeBDYh6Zmw4MXivUYElAI/wZad8OzUjl5Y9v+32L56qW3zVHOv 10 | aL0eilyYnCV4N9wMTYfgfBzv4k7HbE3m+3F19+IgJWfcDxSBbMkfAKRDY3/4MQQr 11 | vk3DB4o2NMxrzN+Rx/8FXlf4TeuSNkj2EXGK+2oeZkTNJz6c0E42KRQJkMhZ1Bu1 12 | rkfRY7ZT8bn8OkuAfwYIYt3k/tsrNniIwVEHdzr7BBZgZTWLo22vs4Bns9cao/z3 13 | by8fZaSbdW9/Q18iuHElv/AWM9IH8JACggEAHpQM4op5e8eH5wkM/HP3RzzHXd7U 14 | kYrYiy3H73vkEM6Qha7f6ek2mAiIYnSD44YcdDc5s0X4s6BRLLgEJns4EWO4Gv9G 15 | mxHI75OxcJCBPGw7O2pDVjmjgPXDqGPRuNapYAIMPp1pFgxqXzIdmUqWSwChIy7B 16 | F9TPIUvNwT46fuZf+PoHHVC4qUHJ9JHozzMDuNXphifklSdR2ul6BzR1tG6eQCY5 17 | vtDEXYcgDHDwQawrZNNRRvzl1bZp+/nQEodR6FA/GAHaAQdUy3u6Ii+wjrjEODga 18 | NdrYyQGoK6PGsUpgo0DI1DqOjCNe7yAsyKBR4uZ3H37/sQuy3dOUgSmmuwIVAJtA 19 | dcZcRk7ziZ7mPu4zmSRlD0fO 20 | -----END DSA PRIVATE KEY----- 21 | -------------------------------------------------------------------------------- /extras/mdlj/mdljserverpubkey.pem: -------------------------------------------------------------------------------- 1 | -----BEGIN PUBLIC KEY----- 2 | MIIDOjCCAi0GByqGSM44BAEwggIgAoIBAQCVf0tHXJ9LkGB5SerMND1eBjJMsUzt 3 | KW2XiTPZzC/GvtXU50vzKhoj4qVRssuJIUzX7FaKHqUhSJ4P1s5zdcb53AV1hKyq 4 | yz/9M7eFwD0mDo3X+8gMgFlkH8z4mXp/VnZ/VB83prIbXW9d1D87tZINn+/2qDDa 5 | wlf9NcBOv37uEM+hToVrhZgR6oEBgY9+rE366Eymzp173C1Z4ozWqS84dJnsUmBL 6 | e8u1LWHOfSf0UwbsTekKomitu/xrNhCNn1Cw+U5OOoxODcrhSFZ/nBPrs7rXY1s1 7 | eZOoIGCPr7CUABiZwjvMv4vel6ZaFBI4Qdao3udugVANPMcpNrSHCnZlAhUAuT19 8 | VdMExRoXFvgcFlW0vC9QPDkCggEATETcl3U1gUJa6lRwVsC7FpT9bn8B3mPikb51 9 | Ycdh0jG3j5i8qTy5d9/O449fs7J3mB0QYR4ENiHpmbDgxeK9RgSUAj/Blp3w7NSO 10 | Xlj2/7fYvnqpbfNUc69ovR6KXJicJXg33AxNh+B8HO/iTsdsTeb7cXX34iAlZ9wP 11 | FIFsyR8ApENjf/gxBCu+TcMHijY0zGvM35HH/wVeV/hN65I2SPYRcYr7ah5mRM0n 12 | PpzQTjYpFAmQyFnUG7WuR9FjtlPxufw6S4B/Bghi3eT+2ys2eIjBUQd3OvsEFmBl 13 | NYujba+zgGez1xqj/PdvLx9lpJt1b39DXyK4cSW/8BYz0gfwkAOCAQUAAoIBAB6U 14 | DOKKeXvHh+cJDPxz90c8x13e1JGK2Istx+975BDOkIWu3+npNpgIiGJ0g+OGHHQ3 15 | ObNF+LOgUSy4BCZ7OBFjuBr/RpsRyO+TsXCQgTxsOztqQ1Y5o4D1w6hj0bjWqWAC 16 | DD6daRYMal8yHZlKlksAoSMuwRfUzyFLzcE+On7mX/j6Bx1QuKlByfSR6M8zA7jV 17 | 6YYn5JUnUdrpegc0dbRunkAmOb7QxF2HIAxw8EGsK2TTUUb85dW2afv50BKHUehQ 18 | PxgB2gEHVMt7uiIvsI64xDg4GjXa2MkBqCujxrFKYKNAyNQ6jowjXu8gLMigUeLm 19 | dx9+/7ELst3TlIEpprs= 20 | -----END PUBLIC KEY----- 21 | -------------------------------------------------------------------------------- /extras/nubbin/passwords.txt: -------------------------------------------------------------------------------- 1 | user: nubbin 2 | pass: nubbinpass 3 | 4 | user: root 5 | pass: rootpass 6 | -------------------------------------------------------------------------------- /extras/rsatesp/auth.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/rsatesp/auth.db -------------------------------------------------------------------------------- /extras/rsatesp/createdb.sh: -------------------------------------------------------------------------------- 1 | #/bin/sh 2 | 3 | 4 | sqlite3 auth.db "create table users (id INTEGER PRIMARY KEY, user TEXT, pin TEXT);" 5 | sqlite3 auth.db "insert into users (user,pin) values ('bill','2345');" 6 | -------------------------------------------------------------------------------- /extras/rsatesp/rsatesp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/rsatesp/rsatesp -------------------------------------------------------------------------------- /extras/rsatesp/rsatesp_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/rsatesp/rsatesp_2 -------------------------------------------------------------------------------- /extras/spelunk/adv.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/spelunk/adv.key -------------------------------------------------------------------------------- /extras/spelunk/adv.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/spelunk/adv.rec -------------------------------------------------------------------------------- /extras/supd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/supd -------------------------------------------------------------------------------- /extras/supd.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/supd.pyc -------------------------------------------------------------------------------- /extras/xserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/extras/xserver -------------------------------------------------------------------------------- /rc.d/EmergencyBrake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: EmergencyBrake 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="EmergencyBrake" # name of script 10 | rcvar="EmergencyBrake_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${EmergencyBrake_enable:=yes} # enable by default 20 | : ${EmergencyBrake_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | EmergencyBrake_start() { 23 | # unused 24 | } 25 | 26 | EmergencyBrake_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/SupaFlyTNT: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: SupaFlyTNT 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="SupaFlyTNT" # name of script 10 | rcvar="SupaFlyTNT_enable " # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${SupaFlyTNT_enable:=yes} # enable by default 20 | : ${SupaFlyTNT_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | SupaFlyTNT_start() { 23 | # unused 24 | } 25 | 26 | SupaFlyTNT_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/alice: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: alice 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="alice" # name of script 10 | rcvar="alice_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${alice_enable:=yes} # enable by default 20 | : ${alice_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | alice_start() { 23 | # unused 24 | } 25 | 26 | alice_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/antipastod: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: antipastod 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="antipastod" # name of script 10 | rcvar="antipastod_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${antipastod_enable:=yes} # enable by default 20 | : ${antipastod_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | antipastod_start() { 23 | # unused 24 | } 25 | 26 | antipastod_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/arpsd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: arpsd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="arpsd" # name of script 10 | rcvar="arpsd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${arpsd_enable:=yes} # enable by default 20 | : ${arpsd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | arpsd_start() { 23 | # unused 24 | } 25 | 26 | arpsd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/aspd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: aspd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="aspd" # name of script 10 | rcvar="aspd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${aspd_enable:=yes} # enable by default 20 | : ${aspd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | aspd_start() { 23 | # unused 24 | } 25 | 26 | aspd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/b16: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: b16 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="b16" # name of script 10 | rcvar="b16_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${b16_enable:=yes} # enable by default 20 | : ${b16_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | b16_start() { 23 | # unused 24 | } 25 | 26 | b16_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/baaaad: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: baaaad 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="baaaad" # name of script 10 | rcvar="baaaad_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${baaaad_enable:=yes} # enable by default 20 | : ${baaaad_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | baaaad_start() { 23 | # unused 24 | } 25 | 26 | baaaad_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/bakalakadakaChat: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: bakalakadakaChat 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="bakalakadakaChat" # name of script 10 | rcvar="bakalakadakaChat_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${bakalakadakaChat_enable:=yes} # enable by default 20 | : ${bakalakadakaChat_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | bakalakadakaChat_start() { 23 | # unused 24 | } 25 | 26 | bakalakadakaChat_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/barista: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: barista 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="barista" # name of script 10 | rcvar="barista_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${barista_enable:=yes} # enable by default 20 | : ${barista_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | barista_start() { 23 | # unused 24 | } 25 | 26 | barista_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/befunge: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: befunge 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="befunge" # name of script 10 | rcvar="befunge_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${befunge_enable:=yes} # enable by default 20 | : ${befunge_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | befunge_start() { 23 | # unused 24 | } 25 | 26 | befunge_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/blowlogd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: blowlogd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="blowlogd" # name of script 10 | rcvar="blowlogd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${blowlogd_enable:=yes} # enable by default 20 | : ${blowlogd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | blowlogd_start() { 23 | # unused 24 | } 25 | 26 | blowlogd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/bowser: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: bowser 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="bowser" # name of script 10 | rcvar="bowser_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${bowser_enable:=yes} # enable by default 20 | : ${bowser_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | bowser_start() { 23 | # unused 24 | } 25 | 26 | bowser_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/bparkd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: bparkd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="bparkd" # name of script 10 | rcvar="bparkd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${bparkd_enable:=yes} # enable by default 20 | : ${bparkd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | bparkd_start() { 23 | # unused 24 | } 25 | 26 | bparkd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/bunny: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: bunny 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="bunny" # name of script 10 | rcvar="bunny_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${bunny_enable:=yes} # enable by default 20 | : ${bunny_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | bunny_start() { 23 | # unused 24 | } 25 | 26 | bunny_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/cashew: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: cashew 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="cashew" # name of script 10 | rcvar="cashew_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${cashew_enable:=yes} # enable by default 20 | : ${cashew_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | cashew_start() { 23 | # unused 24 | } 25 | 26 | cashew_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/casino: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: casino 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="casino" # name of script 10 | rcvar="casino_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${casino_enable:=yes} # enable by default 20 | : ${casino_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | casino_start() { 23 | # unused 24 | } 25 | 26 | casino_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/castle: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: castle 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="castle" # name of script 10 | rcvar="castle_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${castle_enable:=yes} # enable by default 20 | : ${castle_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | castle_start() { 23 | # unused 24 | } 25 | 26 | castle_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/catdoord: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: catdoord 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="catdoord" # name of script 10 | rcvar="catdoord_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${catdoord_enable:=yes} # enable by default 20 | : ${catdoord_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | catdoord_start() { 23 | # unused 24 | } 25 | 26 | catdoord_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/cherry: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: cherry 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="cherry" # name of script 10 | rcvar="cherry_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${cherry_enable:=yes} # enable by default 20 | : ${cherry_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | cherry_start() { 23 | # unused 24 | } 25 | 26 | cherry_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/cjd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: cjd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="cjd" # name of script 10 | rcvar="cjd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${cjd_enable:=yes} # enable by default 20 | : ${cjd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | cjd_start() { 23 | # unused 24 | } 25 | 26 | cjd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/cleaner: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: cleaner 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="cleaner" # name of script 10 | rcvar="cleaner_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${cleaner_enable:=yes} # enable by default 20 | : ${cleaner_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | cleaner_start() { 23 | # unused 24 | } 25 | 26 | cleaner_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/cmd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: cmd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="cmd" # name of script 10 | rcvar="cmd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${cmd_enable:=yes} # enable by default 20 | : ${cmd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | cmd_start() { 23 | # unused 24 | } 25 | 26 | cmd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/cohend: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: cohend 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="cohend" # name of script 10 | rcvar="cohend_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${cohend_enable:=yes} # enable by default 20 | : ${cohend_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | cohend_start() { 23 | # unused 24 | } 25 | 26 | cohend_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/coney: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: coney 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="coney" # name of script 10 | rcvar="coney_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${coney_enable:=yes} # enable by default 20 | : ${coney_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | coney_start() { 23 | # unused 24 | } 25 | 26 | coney_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/ddftpd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: ddftpd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="ddftpd" # name of script 10 | rcvar="ddftpd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${ddftpd_enable:=yes} # enable by default 20 | : ${ddftpd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | ddftpd_start() { 23 | # unused 24 | } 25 | 26 | ddftpd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/dealer: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: dealer 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="dealer" # name of script 10 | rcvar="dealer_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${dealer_enable:=yes} # enable by default 20 | : ${dealer_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | dealer_start() { 23 | # unused 24 | } 25 | 26 | dealer_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/deltad: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: deltad 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="deltad" # name of script 10 | rcvar="deltad_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${deltad_enable:=yes} # enable by default 20 | : ${deltad_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | deltad_start() { 23 | # unused 24 | } 25 | 26 | deltad_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/desheepd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: desheepd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="desheepd" # name of script 10 | rcvar="desheepd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${desheepd_enable:=yes} # enable by default 20 | : ${desheepd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | desheepd_start() { 23 | # unused 24 | } 25 | 26 | desheepd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/deuced: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: deuced 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="deuced" # name of script 10 | rcvar="deuced_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${deuced_enable:=yes} # enable by default 20 | : ${deuced_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | deuced_start() { 23 | # unused 24 | } 25 | 26 | deuced_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/diablo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: diablo 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="diablo" # name of script 10 | rcvar="diablo_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${diablo_enable:=yes} # enable by default 20 | : ${diablo_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | diablo_start() { 23 | # unused 24 | } 25 | 26 | diablo_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/dog: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: dog 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="dog" # name of script 10 | rcvar="dog_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${dog_enable:=yes} # enable by default 20 | : ${dog_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | dog_start() { 23 | # unused 24 | } 25 | 26 | dog_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/duckshootd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: duckshootd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="duckshootd" # name of script 10 | rcvar="duckshootd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${duckshootd_enable:=yes} # enable by default 20 | : ${duckshootd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | duckshootd_start() { 23 | # unused 24 | } 25 | 26 | duckshootd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/echod: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: echod 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="echod" # name of script 10 | rcvar="echod_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${echod_enable:=yes} # enable by default 20 | : ${echod_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | echod_start() { 23 | # unused 24 | } 25 | 26 | echod_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/elfd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: elfd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="elfd" # name of script 10 | rcvar="elfd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${elfd_enable:=yes} # enable by default 20 | : ${elfd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | elfd_start() { 23 | # unused 24 | } 25 | 26 | elfd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/enigma: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: enigma 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="enigma" # name of script 10 | rcvar="enigma_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${enigma_enable:=yes} # enable by default 20 | : ${enigma_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | enigma_start() { 23 | # unused 24 | } 25 | 26 | enigma_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/fingerd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: fingerd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="fingerd" # name of script 10 | rcvar="fingerd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${fingerd_enable:=yes} # enable by default 20 | : ${fingerd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | fingerd_start() { 23 | # unused 24 | } 25 | 26 | fingerd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/food: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: food 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="food" # name of script 10 | rcvar="food_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${food_enable:=yes} # enable by default 20 | : ${food_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | food_start() { 23 | # unused 24 | } 25 | 26 | food_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/forgetu: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: forgetu 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="forgetu" # name of script 10 | rcvar="forgetu_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${forgetu_enable:=yes} # enable by default 20 | : ${forgetu_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | forgetu_start() { 23 | # unused 24 | } 25 | 26 | forgetu_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/gallows: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: gallows 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="gallows" # name of script 10 | rcvar="gallows_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${gallows_enable:=yes} # enable by default 20 | : ${gallows_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | gallows_start() { 23 | # unused 24 | } 25 | 26 | gallows_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/gold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: gold 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="gold" # name of script 10 | rcvar="gold_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${gold_enable:=yes} # enable by default 20 | : ${gold_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | gold_start() { 23 | # unused 24 | } 25 | 26 | gold_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/grimcreeper: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: grimcreeper 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="grimcreeper" # name of script 10 | rcvar="grimcreeper_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${grimcreeper_enable:=yes} # enable by default 20 | : ${grimcreeper_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | grimcreeper_start() { 23 | # unused 24 | } 25 | 26 | grimcreeper_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/hashpiped: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: hashpiped 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="hashpiped" # name of script 10 | rcvar="hashpiped_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${hashpiped_enable:=yes} # enable by default 20 | : ${hashpiped_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | hashpiped_start() { 23 | # unused 24 | } 25 | 26 | hashpiped_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/hfd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: hfd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="hfd" # name of script 10 | rcvar="hfd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${hfd_enable:=yes} # enable by default 20 | : ${hfd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | hfd_start() { 23 | # unused 24 | } 25 | 26 | hfd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/hiver: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: hiver 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="hiver" # name of script 10 | rcvar="hiver_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${hiver_enable:=yes} # enable by default 20 | : ${hiver_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | hiver_start() { 23 | # unused 24 | } 25 | 26 | hiver_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/houdini: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: houdini 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="houdini" # name of script 10 | rcvar="houdini_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${houdini_enable:=yes} # enable by default 20 | : ${houdini_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | houdini_start() { 23 | # unused 24 | } 25 | 26 | houdini_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/htlame: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: htlame 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="htlame" # name of script 10 | rcvar="htlame_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${htlame_enable:=yes} # enable by default 20 | : ${htlame_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | htlame_start() { 23 | # unused 24 | } 25 | 26 | htlame_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/iMagick: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: iMagick 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="iMagick" # name of script 10 | rcvar="iMagick_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${iMagick_enable:=yes} # enable by default 20 | : ${iMagick_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | iMagick_start() { 23 | # unused 24 | } 25 | 26 | iMagick_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/inetd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: inetd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="inetd" # name of script 10 | rcvar="inetd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${inetd_enable:=yes} # enable by default 20 | : ${inetd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | inetd_start() { 23 | # unused 24 | } 25 | 26 | inetd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/intception: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: intception 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="intception" # name of script 10 | rcvar="intception_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${intception_enable:=yes} # enable by default 20 | : ${intception_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | intception_start() { 23 | # unused 24 | } 25 | 26 | intception_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/jerkin: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: jerkin 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="jerkin" # name of script 10 | rcvar="jerkin_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${jerkin_enable:=yes} # enable by default 20 | : ${jerkin_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | jerkin_start() { 23 | # unused 24 | } 25 | 26 | jerkin_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/joshua: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: joshua 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="joshua" # name of script 10 | rcvar="joshua_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${joshua_enable:=yes} # enable by default 20 | : ${joshua_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | joshua_start() { 23 | # unused 24 | } 25 | 26 | joshua_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kdnsd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kdnsd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kdnsd" # name of script 10 | rcvar="kdnsd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kdnsd_enable:=yes} # enable by default 20 | : ${kdnsd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kdnsd_start() { 23 | # unused 24 | } 25 | 26 | kdnsd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kftpd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kftpd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kftpd" # name of script 10 | rcvar="kftpd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kftpd_enable:=yes} # enable by default 20 | : ${kftpd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kftpd_start() { 23 | # unused 24 | } 25 | 26 | kftpd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kimjong: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kimjong 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kimjong" # name of script 10 | rcvar="kimjong_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kimjong_enable:=yes} # enable by default 20 | : ${kimjong_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kimjong_start() { 23 | # unused 24 | } 25 | 26 | kimjong_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kmaild: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kmaild 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kmaild" # name of script 10 | rcvar="kmaild_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kmaild_enable:=yes} # enable by default 20 | : ${kmaild_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kmaild_start() { 23 | # unused 24 | } 25 | 26 | kmaild_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kmsgd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kmsgd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kmsgd" # name of script 10 | rcvar="kmsgd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kmsgd_enable:=yes} # enable by default 20 | : ${kmsgd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kmsgd_start() { 23 | # unused 24 | } 25 | 26 | kmsgd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kryptod: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kryptod 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kryptod" # name of script 10 | rcvar="kryptod_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kryptod_enable:=yes} # enable by default 20 | : ${kryptod_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kryptod_start() { 23 | # unused 24 | } 25 | 26 | kryptod_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kstrings: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kstrings 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kstrings" # name of script 10 | rcvar="kstrings_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kstrings_enable:=yes} # enable by default 20 | : ${kstrings_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kstrings_start() { 23 | # unused 24 | } 25 | 26 | kstrings_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/kuftpd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: kuftpd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="kuftpd" # name of script 10 | rcvar="kuftpd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${kuftpd_enable:=yes} # enable by default 20 | : ${kuftpd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | kuftpd_start() { 23 | # unused 24 | } 25 | 26 | kuftpd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/lazrus: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: lazrus 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="lazrus" # name of script 10 | rcvar="lazrus_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${lazrus_enable:=yes} # enable by default 20 | : ${lazrus_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | lazrus_start() { 23 | # unused 24 | } 25 | 26 | lazrus_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/libra: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: libra 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="libra" # name of script 10 | rcvar="libra_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${libra_enable:=yes} # enable by default 20 | : ${libra_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | libra_start() { 23 | # unused 24 | } 25 | 26 | libra_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/lockstep: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: lockstep 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="lockstep" # name of script 10 | rcvar="lockstep_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${lockstep_enable:=yes} # enable by default 20 | : ${lockstep_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | lockstep_start() { 23 | # unused 24 | } 25 | 26 | lockstep_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/madlibd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: madlibd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="madlibd" # name of script 10 | rcvar="madlibd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${madlibd_enable:=yes} # enable by default 20 | : ${madlibd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | madlibd_start() { 23 | # unused 24 | } 25 | 26 | madlibd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/magicd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: magicd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="magicd" # name of script 10 | rcvar="magicd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${magicd_enable:=yes} # enable by default 20 | : ${magicd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | magicd_start() { 23 | # unused 24 | } 25 | 26 | magicd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/mashup: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: mashup 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="mashup" # name of script 10 | rcvar="mashup_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${mashup_enable:=yes} # enable by default 20 | : ${mashup_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | mashup_start() { 23 | # unused 24 | } 25 | 26 | mashup_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/mdljserver: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: mdljserver 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="mdljserver" # name of script 10 | rcvar="mdljserver_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${mdljserver_enable:=yes} # enable by default 20 | : ${mdljserver_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | mdljserver_start() { 23 | # unused 24 | } 25 | 26 | mdljserver_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/memix: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: memix 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="memix" # name of script 10 | rcvar="memix_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${memix_enable:=yes} # enable by default 20 | : ${memix_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | memix_start() { 23 | # unused 24 | } 25 | 26 | memix_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/menageatrois: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: menageatrois 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="menageatrois" # name of script 10 | rcvar="menageatrois_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${menageatrois_enable:=yes} # enable by default 20 | : ${menageatrois_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | menageatrois_start() { 23 | # unused 24 | } 25 | 26 | menageatrois_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/mixology: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: mixology 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="mixology" # name of script 10 | rcvar="mixology_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${mixology_enable:=yes} # enable by default 20 | : ${mixology_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | mixology_start() { 23 | # unused 24 | } 25 | 26 | mixology_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/moatd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: moatd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="moatd" # name of script 10 | rcvar="moatd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${moatd_enable:=yes} # enable by default 20 | : ${moatd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | moatd_start() { 23 | # unused 24 | } 25 | 26 | moatd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/mqdbd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: mqdbd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="mqdbd" # name of script 10 | rcvar="mqdbd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${mqdbd_enable:=yes} # enable by default 20 | : ${mqdbd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | mqdbd_start() { 23 | # unused 24 | } 25 | 26 | mqdbd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/mymqld: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: mymqld 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="mymqld" # name of script 10 | rcvar="mymqld_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${mymqld_enable:=yes} # enable by default 20 | : ${mymqld_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | mymqld_start() { 23 | # unused 24 | } 25 | 26 | mymqld_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/nadel: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: nadel 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="nadel" # name of script 10 | rcvar="nadel_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${nadel_enable:=yes} # enable by default 20 | : ${nadel_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | nadel_start() { 23 | # unused 24 | } 25 | 26 | nadel_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/named: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: named 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="named" # name of script 10 | rcvar="named_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${named_enable:=yes} # enable by default 20 | : ${named_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | named_start() { 23 | # unused 24 | } 25 | 26 | named_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/natord: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: natord 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="natord" # name of script 10 | rcvar="natord_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${natord_enable:=yes} # enable by default 20 | : ${natord_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | natord_start() { 23 | # unused 24 | } 25 | 26 | natord_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/nettoe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: nettoe 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="nettoe" # name of script 10 | rcvar="nettoe_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${nettoe_enable:=yes} # enable by default 20 | : ${nettoe_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | nettoe_start() { 23 | # unused 24 | } 25 | 26 | nettoe_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/neurod: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: neurod 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="neurod" # name of script 10 | rcvar="neurod_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${neurod_enable:=yes} # enable by default 20 | : ${neurod_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | neurod_start() { 23 | # unused 24 | } 25 | 26 | neurod_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/nickd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: nickd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="nickd" # name of script 10 | rcvar="nickd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${nickd_enable:=yes} # enable by default 20 | : ${nickd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | nickd_start() { 23 | # unused 24 | } 25 | 26 | nickd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/nom: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: nom 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="nom" # name of script 10 | rcvar="nom_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${nom_enable:=yes} # enable by default 20 | : ${nom_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | nom_start() { 23 | # unused 24 | } 25 | 26 | nom_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/noprotas: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: noprotas 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="noprotas" # name of script 10 | rcvar="noprotas_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${noprotas_enable:=yes} # enable by default 20 | : ${noprotas_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | noprotas_start() { 23 | # unused 24 | } 25 | 26 | noprotas_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/nssds: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: nssds 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="nssds" # name of script 10 | rcvar="nssds_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${nssds_enable:=yes} # enable by default 20 | : ${nssds_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | nssds_start() { 23 | # unused 24 | } 25 | 26 | nssds_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/ocrd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: ocrd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="ocrd" # name of script 10 | rcvar="ocrd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${ocrd_enable:=yes} # enable by default 20 | : ${ocrd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | ocrd_start() { 23 | # unused 24 | } 25 | 26 | ocrd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/parrot: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: parrot 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="parrot" # name of script 10 | rcvar="parrot_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${parrot_enable:=yes} # enable by default 20 | : ${parrot_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | parrot_start() { 23 | # unused 24 | } 25 | 26 | parrot_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/perudo: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: perudo 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="perudo" # name of script 10 | rcvar="perudo_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${perudo_enable:=yes} # enable by default 20 | : ${perudo_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | perudo_start() { 23 | # unused 24 | } 25 | 26 | perudo_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/pisa: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: pisa 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="pisa" # name of script 10 | rcvar="pisa_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${pisa_enable:=yes} # enable by default 20 | : ${pisa_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | pisa_start() { 23 | # unused 24 | } 25 | 26 | pisa_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/ralph: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: ralph 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="ralph" # name of script 10 | rcvar="ralph_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${ralph_enable:=yes} # enable by default 20 | : ${ralph_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | ralph_start() { 23 | # unused 24 | } 25 | 26 | ralph_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/readmail: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: readmail 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="readmail" # name of script 10 | rcvar="readmail_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${readmail_enable:=yes} # enable by default 20 | : ${readmail_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | readmail_start() { 23 | # unused 24 | } 25 | 26 | readmail_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/roflcode: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: roflcode 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="roflcode" # name of script 10 | rcvar="roflcode_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${roflcode_enable:=yes} # enable by default 20 | : ${roflcode_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | roflcode_start() { 23 | # unused 24 | } 25 | 26 | roflcode_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/rolodex: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: rolodex 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="rolodex" # name of script 10 | rcvar="rolodex_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${rolodex_enable:=yes} # enable by default 20 | : ${rolodex_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | rolodex_start() { 23 | # unused 24 | } 25 | 26 | rolodex_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/rotary: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: rotary 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="rotary" # name of script 10 | rcvar="rotary_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${rotary_enable:=yes} # enable by default 20 | : ${rotary_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | rotary_start() { 23 | # unused 24 | } 25 | 26 | rotary_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/rsatesp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: rsatesp 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="rsatesp" # name of script 10 | rcvar="rsatesp_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${rsatesp_enable:=yes} # enable by default 20 | : ${rsatesp_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | rsatesp_start() { 23 | # unused 24 | } 25 | 26 | rsatesp_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/sammichd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: sammichd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="sammichd" # name of script 10 | rcvar="sammichd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${sammichd_enable:=yes} # enable by default 20 | : ${sammichd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | sammichd_start() { 23 | # unused 24 | } 25 | 26 | sammichd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/santad: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: santad 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="santad" # name of script 10 | rcvar="santad_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${santad_enable:=yes} # enable by default 20 | : ${santad_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | santad_start() { 23 | # unused 24 | } 25 | 26 | santad_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/scool: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: scool 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="scool" # name of script 10 | rcvar="scool_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${scool_enable:=yes} # enable by default 20 | : ${scool_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | scool_start() { 23 | # unused 24 | } 25 | 26 | scool_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/semem: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: semem 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="semem" # name of script 10 | rcvar="semem_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${semem_enable:=yes} # enable by default 20 | : ${semem_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | semem_start() { 23 | # unused 24 | } 25 | 26 | semem_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/serverd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: serverd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="serverd" # name of script 10 | rcvar="serverd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${serverd_enable:=yes} # enable by default 20 | : ${serverd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | serverd_start() { 23 | # unused 24 | } 25 | 26 | serverd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/sheepster: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: sheepster 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="sheepster" # name of script 10 | rcvar="sheepster_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${sheepster_enable:=yes} # enable by default 20 | : ${sheepster_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | sheepster_start() { 23 | # unused 24 | } 25 | 26 | sheepster_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/shellcat: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: shellcat 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="shellcat" # name of script 10 | rcvar="shellcat_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${shellcat_enable:=yes} # enable by default 20 | : ${shellcat_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | shellcat_start() { 23 | # unused 24 | } 25 | 26 | shellcat_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/slickd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: slickd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="slickd" # name of script 10 | rcvar="slickd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${slickd_enable:=yes} # enable by default 20 | : ${slickd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | slickd_start() { 23 | # unused 24 | } 25 | 26 | slickd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/smtpd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: smtpd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="smtpd" # name of script 10 | rcvar="smtpd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${smtpd_enable:=yes} # enable by default 20 | : ${smtpd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | smtpd_start() { 23 | # unused 24 | } 25 | 26 | smtpd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/sockringd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: sockringd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="sockringd" # name of script 10 | rcvar="sockringd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${sockringd_enable:=yes} # enable by default 20 | : ${sockringd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | sockringd_start() { 23 | # unused 24 | } 25 | 26 | sockringd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/sor: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: sor 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="sor" # name of script 10 | rcvar="sor_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${sor_enable:=yes} # enable by default 20 | : ${sor_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | sor_start() { 23 | # unused 24 | } 25 | 26 | sor_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/spelunk: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: spelunk 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="spelunk" # name of script 10 | rcvar="spelunk_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${spelunk_enable:=yes} # enable by default 20 | : ${spelunk_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | spelunk_start() { 23 | # unused 24 | } 25 | 26 | spelunk_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/supd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: supd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="supd" # name of script 10 | rcvar="supd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${supd_enable:=yes} # enable by default 20 | : ${supd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | supd_start() { 23 | # unused 24 | } 25 | 26 | supd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/superd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: superd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="superd" # name of script 10 | rcvar="superd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${superd_enable:=yes} # enable by default 20 | : ${superd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | superd_start() { 23 | # unused 24 | } 25 | 26 | superd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/sushid: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: sushid 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="sushid" # name of script 10 | rcvar="sushid_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${sushid_enable:=yes} # enable by default 20 | : ${sushid_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | sushid_start() { 23 | # unused 24 | } 25 | 26 | sushid_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/telephone: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: telephone 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="telephone" # name of script 10 | rcvar="telephone_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${telephone_enable:=yes} # enable by default 20 | : ${telephone_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | telephone_start() { 23 | # unused 24 | } 25 | 26 | telephone_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/tictactoe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: tictactoe 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="tictactoe" # name of script 10 | rcvar="tictactoe_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${tictactoe_enable:=yes} # enable by default 20 | : ${tictactoe_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | tictactoe_start() { 23 | # unused 24 | } 25 | 26 | tictactoe_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/tomato: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: tomato 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="tomato" # name of script 10 | rcvar="tomato_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${tomato_enable:=yes} # enable by default 20 | : ${tomato_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | tomato_start() { 23 | # unused 24 | } 25 | 26 | tomato_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/torqux: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: torqux 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="torqux" # name of script 10 | rcvar="torqux_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${torqux_enable:=yes} # enable by default 20 | : ${torqux_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | torqux_start() { 23 | # unused 24 | } 25 | 26 | torqux_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/transformd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: transformd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="transformd" # name of script 10 | rcvar="transformd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${transformd_enable:=yes} # enable by default 20 | : ${transformd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | transformd_start() { 23 | # unused 24 | } 25 | 26 | transformd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/tucod: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: tucod 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="tucod" # name of script 10 | rcvar="tucod_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${tucod_enable:=yes} # enable by default 20 | : ${tucod_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | tucod_start() { 23 | # unused 24 | } 25 | 26 | tucod_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/vacation: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: vacation 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="vacation" # name of script 10 | rcvar="vacation_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${vacation_enable:=yes} # enable by default 20 | : ${vacation_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | vacation_start() { 23 | # unused 24 | } 25 | 26 | vacation_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/war: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: war 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="war" # name of script 10 | rcvar="war_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${war_enable:=yes} # enable by default 20 | : ${war_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | war_start() { 23 | # unused 24 | } 25 | 26 | war_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/wumpus: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: wumpus 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="wumpus" # name of script 10 | rcvar="wumpus_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${wumpus_enable:=yes} # enable by default 20 | : ${wumpus_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | wumpus_start() { 23 | # unused 24 | } 25 | 26 | wumpus_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/wwcd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: wwcd 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="wwcd" # name of script 10 | rcvar="wwcd_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${wwcd_enable:=yes} # enable by default 20 | : ${wwcd_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | wwcd_start() { 23 | # unused 24 | } 25 | 26 | wwcd_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc.d/zul: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: zul 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="zul" # name of script 10 | rcvar="zul_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${zul_enable:=yes} # enable by default 20 | : ${zul_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | zul_start() { 23 | # unused 24 | } 25 | 26 | zul_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /rc_d_template: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # PROVIDE: SERVICE_NAME 4 | # REQUIRE: NETWORKING 5 | # KEYWORD: shutdown 6 | 7 | . /etc/rc.subr # required by rc.d subsystem 8 | 9 | name="SERVICE_NAME" # name of script 10 | rcvar="SERVICE_NAME_enable" # name of /etc/rc.conf enable command 11 | command="/usr/local/sbin/${name}" # path to executable 12 | command_args="&" # arguments to executable 13 | #pidfile="/var/run/${name}.pid" # file containing service's process ID 14 | required_files="" # files required to start service 15 | #start_cmd="${name}_start" # name of start function 16 | #stop_cmd="${name}_stop" # name of stop function 17 | 18 | load_rc_config $name # load rc.conf variables 19 | : ${SERVICE_NAME_enable:=yes} # enable by default 20 | : ${SERVICE_NAME_startmsgs:=yes} # show startup messages in /var/log/syslog 21 | 22 | SERVICE_NAME_start() { 23 | # unused 24 | } 25 | 26 | SERVICE_NAME_stop() { 27 | # unused 28 | } 29 | 30 | run_rc_command "$1" # invoke rc.subr 31 | 32 | -------------------------------------------------------------------------------- /sbin/EmergencyBrake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/EmergencyBrake -------------------------------------------------------------------------------- /sbin/SupaFlyTNT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/SupaFlyTNT -------------------------------------------------------------------------------- /sbin/alice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/alice -------------------------------------------------------------------------------- /sbin/antipastod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/antipastod -------------------------------------------------------------------------------- /sbin/arpsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/arpsd -------------------------------------------------------------------------------- /sbin/aspd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/aspd -------------------------------------------------------------------------------- /sbin/b16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/b16 -------------------------------------------------------------------------------- /sbin/baaaad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/baaaad -------------------------------------------------------------------------------- /sbin/bakalakadakaChat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/bakalakadakaChat -------------------------------------------------------------------------------- /sbin/barista: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/barista -------------------------------------------------------------------------------- /sbin/befunge: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | __maxsteps__ = 250000 3 | 4 | import sys 5 | from BaseHTTPServer import * 6 | import PyFunge.execute 7 | from PyFunge.exception import * 8 | from PyFunge.platform import FungePlatform 9 | 10 | class FungePlatform_shell(FungePlatform): 11 | def __init__(self,wfile): 12 | FungePlatform.__init__(self) 13 | self.wfile = wfile 14 | 15 | def putchar(self, char): 16 | self.wfile.write(chr(char)) 17 | self.wfile.flush() 18 | 19 | def getchar(self): 20 | return ord(sys.stdin.read(1)) 21 | 22 | def execute(code,wfile): 23 | platform = FungePlatform_shell(wfile) 24 | execute = PyFunge.execute.FungeExec_FTrefunge98(platform) 25 | 26 | res = "" 27 | stopped = False 28 | 29 | try: 30 | execute.space.putspace((0,) * execute.dimension, code) 31 | except: 32 | res = "Error on PyFunge.space.putspace: Code doesn't fit in Befunge-space!" 33 | 34 | if not res: 35 | for x in xrange(__maxsteps__): 36 | try: 37 | execute.onestep() 38 | except (ExecQuitError, ExecStopError): 39 | stopped = True 40 | break 41 | except: 42 | exc = sys.exc_info() 43 | raise 44 | res = "Error on PyFunge.execute.onestep: %s (%s)" % (str(exc[0]), str(exc[1])) 45 | break 46 | 47 | if execute.stack.slen() > 1: 48 | message = \ 49 | "%d item(s) in topmost stack, %d stacks in stack stack" % \ 50 | (execute.stack.len(), execute.stack.slen()) 51 | else: 52 | message = "%d item(s) in stack" % (execute.stack.len(),) 53 | 54 | if stopped: 55 | for ch in "[Stopped: %d steps, %s]\n" % (x+1, message): 56 | execute.platform.putchar(ord(ch)) 57 | elif not res: 58 | execute.platform.putchar(10) 59 | res = "[Not Stopped: more than %d steps, %s]" % \ 60 | (__maxsteps__, message) 61 | 62 | return res 63 | 64 | class BefungeHandler(BaseHTTPRequestHandler): 65 | 66 | def __init__(self, request, clientaddr, server): 67 | self.server_version = "Befunge HTTPD/1.0" 68 | BaseHTTPRequestHandler.__init__(self, request, clientaddr, server) 69 | 70 | def do_GET(self): 71 | self.send_response(404, "Hmm.. We don't take gets") 72 | self.send_header("WhatYouWant","BEFUNGE") 73 | self.end_headers() 74 | 75 | def do_POST(self): 76 | self.do_GET(self) 77 | 78 | def do_BEFUNGE(self): 79 | #KENSHOTO You can't just remove this... 80 | # There is a service poll that requires reaching this 81 | code = self.rfile.read(10000) 82 | execute(code,self.wfile) 83 | 84 | if __name__ == "__main__": 85 | 86 | server = HTTPServer(("",42666), BefungeHandler) 87 | server.serve_forever() 88 | -------------------------------------------------------------------------------- /sbin/blowlogd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/blowlogd -------------------------------------------------------------------------------- /sbin/bowser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/bowser -------------------------------------------------------------------------------- /sbin/bparkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/bparkd -------------------------------------------------------------------------------- /sbin/bunny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/bunny -------------------------------------------------------------------------------- /sbin/cashew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/cashew -------------------------------------------------------------------------------- /sbin/castle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/castle -------------------------------------------------------------------------------- /sbin/catdoord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/catdoord -------------------------------------------------------------------------------- /sbin/cherry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/cherry -------------------------------------------------------------------------------- /sbin/cjd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/cjd -------------------------------------------------------------------------------- /sbin/cleaner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/cleaner -------------------------------------------------------------------------------- /sbin/cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/cmd -------------------------------------------------------------------------------- /sbin/cohend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/cohend -------------------------------------------------------------------------------- /sbin/coney: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/coney -------------------------------------------------------------------------------- /sbin/ddftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/ddftpd -------------------------------------------------------------------------------- /sbin/deltad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/deltad -------------------------------------------------------------------------------- /sbin/desheepd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/desheepd -------------------------------------------------------------------------------- /sbin/deuced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/deuced -------------------------------------------------------------------------------- /sbin/diablo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/diablo -------------------------------------------------------------------------------- /sbin/dog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/dog -------------------------------------------------------------------------------- /sbin/duckshootd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/duckshootd -------------------------------------------------------------------------------- /sbin/echod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/echod -------------------------------------------------------------------------------- /sbin/elfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/elfd -------------------------------------------------------------------------------- /sbin/enigma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/enigma -------------------------------------------------------------------------------- /sbin/fingerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/fingerd -------------------------------------------------------------------------------- /sbin/food: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/food -------------------------------------------------------------------------------- /sbin/forgetu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/forgetu -------------------------------------------------------------------------------- /sbin/gallows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/gallows -------------------------------------------------------------------------------- /sbin/gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/gold -------------------------------------------------------------------------------- /sbin/grimcreeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/grimcreeper -------------------------------------------------------------------------------- /sbin/hashpiped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/hashpiped -------------------------------------------------------------------------------- /sbin/hfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/hfd -------------------------------------------------------------------------------- /sbin/hiver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/hiver -------------------------------------------------------------------------------- /sbin/houdini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/houdini -------------------------------------------------------------------------------- /sbin/htlame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/htlame -------------------------------------------------------------------------------- /sbin/iMagick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/iMagick -------------------------------------------------------------------------------- /sbin/inetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/inetd -------------------------------------------------------------------------------- /sbin/intception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/intception -------------------------------------------------------------------------------- /sbin/jerkin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/jerkin -------------------------------------------------------------------------------- /sbin/joshua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/joshua -------------------------------------------------------------------------------- /sbin/kdnsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kdnsd -------------------------------------------------------------------------------- /sbin/kftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kftpd -------------------------------------------------------------------------------- /sbin/kimjong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kimjong -------------------------------------------------------------------------------- /sbin/kmaild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kmaild -------------------------------------------------------------------------------- /sbin/kmsgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kmsgd -------------------------------------------------------------------------------- /sbin/kryptod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kryptod -------------------------------------------------------------------------------- /sbin/kstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kstrings -------------------------------------------------------------------------------- /sbin/kuftpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/kuftpd -------------------------------------------------------------------------------- /sbin/lazrus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/lazrus -------------------------------------------------------------------------------- /sbin/libra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/libra -------------------------------------------------------------------------------- /sbin/lockstep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/lockstep -------------------------------------------------------------------------------- /sbin/madlibd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/madlibd -------------------------------------------------------------------------------- /sbin/magicd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/magicd -------------------------------------------------------------------------------- /sbin/mashup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/mashup -------------------------------------------------------------------------------- /sbin/mdljserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/mdljserver -------------------------------------------------------------------------------- /sbin/memix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/memix -------------------------------------------------------------------------------- /sbin/menageatrois: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/menageatrois -------------------------------------------------------------------------------- /sbin/mixology: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/mixology -------------------------------------------------------------------------------- /sbin/moatd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/moatd -------------------------------------------------------------------------------- /sbin/mqdbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/mqdbd -------------------------------------------------------------------------------- /sbin/mymqld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/mymqld -------------------------------------------------------------------------------- /sbin/nadel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/nadel -------------------------------------------------------------------------------- /sbin/named: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/named -------------------------------------------------------------------------------- /sbin/natord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/natord -------------------------------------------------------------------------------- /sbin/nettoe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/nettoe -------------------------------------------------------------------------------- /sbin/neurod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/neurod -------------------------------------------------------------------------------- /sbin/nickd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/nickd -------------------------------------------------------------------------------- /sbin/nom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/nom -------------------------------------------------------------------------------- /sbin/noprotas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/noprotas -------------------------------------------------------------------------------- /sbin/nssds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/nssds -------------------------------------------------------------------------------- /sbin/ocrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/ocrd -------------------------------------------------------------------------------- /sbin/parrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/parrot -------------------------------------------------------------------------------- /sbin/perudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/perudo -------------------------------------------------------------------------------- /sbin/pisa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/pisa -------------------------------------------------------------------------------- /sbin/ralph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/ralph -------------------------------------------------------------------------------- /sbin/readmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/readmail -------------------------------------------------------------------------------- /sbin/roflcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/roflcode -------------------------------------------------------------------------------- /sbin/rolodex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/rolodex -------------------------------------------------------------------------------- /sbin/rotary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/rotary -------------------------------------------------------------------------------- /sbin/rsatesp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/rsatesp -------------------------------------------------------------------------------- /sbin/sammichd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/sammichd -------------------------------------------------------------------------------- /sbin/sandy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/sandy -------------------------------------------------------------------------------- /sbin/santad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/santad -------------------------------------------------------------------------------- /sbin/scool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/scool -------------------------------------------------------------------------------- /sbin/semem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/semem -------------------------------------------------------------------------------- /sbin/serverd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/serverd -------------------------------------------------------------------------------- /sbin/sheepster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/sheepster -------------------------------------------------------------------------------- /sbin/shellcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/shellcat -------------------------------------------------------------------------------- /sbin/slickd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/slickd -------------------------------------------------------------------------------- /sbin/smtpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/smtpd -------------------------------------------------------------------------------- /sbin/sockringd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/sockringd -------------------------------------------------------------------------------- /sbin/sor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/sor -------------------------------------------------------------------------------- /sbin/spelunk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/spelunk -------------------------------------------------------------------------------- /sbin/supd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/supd -------------------------------------------------------------------------------- /sbin/superd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/superd -------------------------------------------------------------------------------- /sbin/sushid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/sushid -------------------------------------------------------------------------------- /sbin/telephone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/telephone -------------------------------------------------------------------------------- /sbin/tictactoe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/tictactoe -------------------------------------------------------------------------------- /sbin/tomato: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/tomato -------------------------------------------------------------------------------- /sbin/torqux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/torqux -------------------------------------------------------------------------------- /sbin/transformd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/transformd -------------------------------------------------------------------------------- /sbin/tucod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/tucod -------------------------------------------------------------------------------- /sbin/vacation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/vacation -------------------------------------------------------------------------------- /sbin/war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/war -------------------------------------------------------------------------------- /sbin/wumpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/wumpus -------------------------------------------------------------------------------- /sbin/wwcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/wwcd -------------------------------------------------------------------------------- /sbin/zul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuzyll/defcon-vm/60dc22bce7bca32781177256ac2182b5a7b9676b/sbin/zul --------------------------------------------------------------------------------