This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 17 matches

by RedAlert
Sun Jun 01, 2003 1:59 pm
Forum: Archive
Topic: Userfile encryption with MD5
Replies: 18
Views: 5421

k, so people who brute force passwords are just dumb since just changing the password is a lot easier. You missed his point. He said the password was obtained from a leaf server, and used to access the hub. There should be no way to change the password on the hub from a leaf, if the hub is set to n...
by RedAlert
Fri May 16, 2003 6:29 am
Forum: Archive
Topic: Bash Script
Replies: 9
Views: 5392

Please, get a clue before telling me I'm wrong. Thank you.
by RedAlert
Thu Feb 27, 2003 12:11 pm
Forum: Archive
Topic: module programming - step 2
Replies: 23
Views: 9505

Re: module programming - step 2

Code: Select all

  dprintf(DP_SERVER, "privmsg %s :%cACTION sniffs your sweet tail%c\r\n", 1, 1);
There's a "chan" argument missing there; your compiler should warn you about this...
You can also use \001 or \x01 instead of the %c construction by the way.
by RedAlert
Sat Dec 28, 2002 1:25 pm
Forum: Archive
Topic: Bash Script
Replies: 9
Views: 5392

upload your script using ASCII mode with ftp from windows, not BINARY mode.

or run dos2unix on it after uploading.

that will fix all the weird errors.

note that both "cd ~/" commands in the script are unnecessary
by RedAlert
Sun Jun 02, 2002 10:08 am
Forum: Archive
Topic: Ban mac-adress
Replies: 7
Views: 1478

oh I see... hmm Microsoft... I could've known that you could really get all possible information from unprotected windows machines :lol:
by RedAlert
Sat Jun 01, 2002 12:59 pm
Forum: Archive
Topic: Ban mac-adress
Replies: 7
Views: 1478

You're right... but in that case you would be able to sniff and spoof all of the IRC server's traffic too, and that has some additional benefits which make channel bans look pale :roll:
by RedAlert
Sat Jun 01, 2002 11:36 am
Forum: Archive
Topic: Ban mac-adress
Replies: 7
Views: 1478

Such as winblows networking. This is information you never want the public to see. And it is possible to grab from someone else, if they have gapping security holes like port 139. You're probably mixing up MAC addresses and NetBIOS names, these are two completely different things :smile: About the ...
by RedAlert
Sat Apr 27, 2002 10:52 pm
Forum: Archive
Topic: ushells.net
Replies: 22
Views: 5245

On 2002-04-20 00:34, Jigy wrote: Funk is chatnet@Bitch-2.ushells.net * Funk_Soul_Brother Funk on @#ushells Funk using Atlanta.GA.US.ChatNet.Org Pain is inevitable; suffering is optional. Funk has been idle 417hrs 36mins 28secs, signed on Tue Apr 02 17:13:07 This might show to you how stable our con...
by RedAlert
Sat Apr 06, 2002 7:32 am
Forum: Archive
Topic: proxy scan tcl
Replies: 6
Views: 4426

Generally it's a bad idea to use such a script, for two reasons: 1) The script will block the eggdrop everytime it is trying to connect to the ports of a joining user. Especially on large channels, this will cause the bot to lag and maybe even timeout off the network, giving proxy abusers a while to...
by RedAlert
Thu Mar 14, 2002 9:05 am
Forum: Archive
Topic: admins rebooting machine
Replies: 2
Views: 1284

On 2002-03-13 05:14, Petersen wrote: as default, all versions of unix send SIGHUP to every process on the system as part as their shutdown routine. that should be SIGTERM... But indeed, when an eggdrop receives either a SIGHUP or a SIGTERM, it will save its userfile immediately, regardless of the d...
by RedAlert
Tue Jan 29, 2002 9:16 am
Forum: Archive
Topic: problems with linking...
Replies: 4
Views: 1289

Undefined first referenced
symbol in file
main /usr/local/lib/gcc-lib/i386-pc-solaris2.7/2.
8.1/crt1.o
"make static"

by RedAlert
Sat Jan 19, 2002 9:39 pm
Forum: Archive
Topic: kick on mIRC32 reply
Replies: 24
Views: 5467

mirc works fine under wine, you know...
by RedAlert
Sun Dec 02, 2001 5:39 pm
Forum: Archive
Topic: How to get the IP of my bot?
Replies: 12
Views: 1536

This would be *extremely* ugly but if you're running Linux and you KNOW you are gonna use the IP from eth0, you could do something like set my-ip [exec /sbin/ifconfig eth0 | grep inet | head -1 | cut -d: -f2 | cut -d -f1] which would set the IP using ifconfig (note that you could also do the manipul...
by RedAlert
Fri Nov 30, 2001 9:58 pm
Forum: Archive
Topic: Inappropriate error message
Replies: 5
Views: 1047

In addition to using a *NIX editor, you could also 1) upload your edited file using ASCII mode in ftp, or 2) use the "dos2unix" tool that comes with alot of UNIX and Linux distributions nowadays. Then you can use your favorite windows editor afterall :wink:
by RedAlert
Fri Nov 30, 2001 9:48 pm
Forum: Archive
Topic: Problems linking botnet
Replies: 3
Views: 963

(...) You cant use 6number ports (...) Just fyi: in most programs, port numbers will be read into a "short" variable without checking for overflow, causing the resulting port to be (port MOD 65536). In this case, 359996 and 359997 are equal to respectively 32316 and 32317, which are good ...