did you install netcat? and from the linux terminal type: nc -zvv yourserverip.org 80 output is or should be yourserverip.org: forward host lookup failed: Unknown host and from my eggdrops log [21:10] (4) - Netcat Report - [[ yourserverip.org:80 is down ]] [21:10] (0) - Netcat Report - [[ gotcode4u....
what does it return from cmd line using nc -zvv badip badport? outputs i get in log are: [14:00] (0) - Netcat Report - [[ gotcode4u.com:80 is ok ]] [14:00] (1) - Netcat Report - [[ google.co.uk:80 is ok ]] [14:00] (2) - Netcat Report - [[ google.com:443 is ok ]] [14:00] (3) - Netcat Report - [[ eggh...
############################################################ ############################################################ # port_scan.tcl version 1 # by doggo 07/01/2014 # requires netcat to be installed on your server # apt-get install netcat # written for http://forum.egghelp.org/viewtopic.php?t=...
why not just use autobotchk? located in the scripts dir it will do all of the above automatically... # AutoBotchk - An eggdrop utility to autogenerate botchk/crontab entries # # Copyright (C) 1999, 2000, 2001, 2002 Jeff Fisher (guppy@eggheads.org) # # How to use # ---------- # # Most people begin to...
thanks to spike and speechless for the additions :D ive added a bit to catch the year tested a lil works great!! # 15/02/2013 # by doggo #omgwtfnzbs @ EFNET # drop in and try this script ;) all feedback is welcome # to add channels, do: .chanset #somechan +imdbapi setudef flag imdbapi namespace eval...
give this a go.. not tested on bot but should be ok bind pub -|- !stats bigtoe:search set database_file "/home/botty/bigtoe.db" set how_many "3" proc bigtoe:search {nick uhost hand chan text} { global database_file how_many set file [open $database_file r] set data [read $file] c...
Thanks nml375, after making the post here i joined #egghelp on the efnet :) was given similar advice, and managed get it all the bodys of the procs back :D [05:54pm] <John13> doggo, depends [05:54pm] <John13> it's not easy, but [info body] is your friend [05:55pm] <John13> ohh, and .binds [07:55pm] ...
is there a way to dump a script to a file from the bots memory? was editing a script remotely and has a power outage, logged back into the shell to check the file and its blank :( all the procs are still working on the bot because i have restarted or rehashed, is there anything i can do?? please hel...
put this together.. not tested but you can do that :D # http://forum.egghelp.org/viewtopic.php?t=19197 set autokick_channels "#chan1 #chan2" set autokick_exempts "/home/spunky/bot/text/exempt_hosts_kick_out.txt" set autokick_kickmsg "You don't have the access to be on this c...
@tomekk forgot the http package dont support ssl, i use this script i wrote for youtube.. works with all variations of youtube urls :D also saves the embeded code urls to a file so you could display them via a webpage :) looks like this in channel.. http://i.imgur.com/xqkoS.jpg and the webpage you c...
find this in the code # Pattern used to patch youtube links in channel public text set youtube(pattern) {http://.*youtube.*/watch\?(.*)v=([A-Za-z0-9_\-]+)} and alter to # Pattern used to patch youtube links in channel public text set youtube(pattern) {http*://.*youtube.*/watch\?(.*)v=([A-Za-z0-9_\-]...