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 39 matches

by FmX
Mon Jul 15, 2024 12:35 pm
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 4174

Re: Dronebl.org checking script

chatgpt give me some solution. Its not perfect but its working :) before that i used Blackshadow tcl ipbl.tcl but for some reason start to show every ip as listed in dronebl database. Solved the issue with IpBL.tcl. Test it again. thanks BlackShadow. Will try it again. EDIT: Working perfect as befo...
by FmX
Mon Jul 15, 2024 12:35 pm
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 4174

Re: Dronebl.org checking script

ok, if chatgpt does the trick, I won't reply anymore in this thread an stop trying to do an automated version of the script. Cya guys. Time to stop insulting people who use chatgpt. I waited a few days and it did not join the thread at all, the moment I wrote that I used chatgpt and you joined. Tim...
by FmX
Sat Jul 13, 2024 3:36 pm
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 4174

Re: Dronebl.org checking script

chatgpt give me some solution. Its not perfect but its working :) before that i used Blackshadow tcl ipbl.tcl but for some reason start to show every ip as listed in dronebl database.
by FmX
Thu Jul 11, 2024 1:37 pm
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 4174

Re: Dronebl.org checking script

i am using ratbox, but i want only for channel scans for this moment cause users from other servers also join my channel and hopm its not option.
by FmX
Thu Jul 11, 2024 1:09 am
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 4174

Re: Dronebl.org checking script

bot is channel operator and irc op and ircd it isnt cloak ips, but 2 variants will be appreciated because other ircds in our network some of them cloak ips.
by FmX
Wed Jul 10, 2024 3:53 pm
Forum: Script Requests
Topic: Dronebl.org checking script
Replies: 11
Views: 4174

Dronebl.org checking script

Hello, can someone write something that check for dronebl ips on channel joins with option for excluded ips or hostnames.
Thanks.
by FmX
Sat Apr 20, 2024 10:35 am
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 3612

Re: Double whois

putserv "whois $target_nick $target_nick" did the trick :)
Thanks CrazyCat.
Simo +cC its not sutable because not all connection comes from my ircd. I am linked to other hub. Anyway with double target_nick everything is good now. :)
by FmX
Wed Apr 17, 2024 12:22 pm
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 3612

Re: Double whois

Proc is this: proc getip {nick uhost handle chan text} { bind raw - 338 ip_from_whois putserv "whois [lindex [split $text] 0 ]" utimer 10 [list unbind raw - 338 ip_from_whois ] } Spoofed whois: :irc.xxx.xxx 338 Marty John :logged from (spoofed) Non-spoofed double whois: :irc.xxx.xxx 338 Ma...
by FmX
Wed Apr 17, 2024 11:48 am
Forum: Scripting Help
Topic: Double whois
Replies: 6
Views: 3612

Double whois

Hello, guys i am using tcl script who make whois to someone and extract IP to channel. If i make whois to someone who is connected from my server there is no problem, but if want to somebody else from different server there is (spoofed) response instead of real IP. If i make double whois with my mir...
by FmX
Sun Feb 11, 2024 3:52 pm
Forum: Script Requests
Topic: Client connections script
Replies: 4
Views: 3422

Re: Client connections script

I make it this way and its working: proc getipdatas {ip} { ::http::config -useragent "lynx" set ipq [http::geturl http://ip-api.com/json/$ip?fields=status,message,continent,continentCode,country,countryCode,region,regionName,city,district,zip,lat,lon,timezone,offset,currency,isp,org,as,asn...
by FmX
Sun Feb 11, 2024 1:27 pm
Forum: Script Requests
Topic: Client connections script
Replies: 4
Views: 3422

Re: Client connections script

I have this error:
Tcl error [ipcheck]: invalid command name "json2dict"

yes, bot is irc op.
by FmX
Sun Feb 11, 2024 9:35 am
Forum: Script Requests
Topic: Client connections script
Replies: 4
Views: 3422

Client connections script

Hello. Does anyone have a script that shows clients connecting to the server in a channel with the user's nick, ip and location? Thank you very much.
by FmX
Tue Jan 30, 2024 7:31 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 34793

Re: scan ip from a proxy scanner site

proc ipcheck {frm key text} {
		if {[string match *!*@* $frm] || ![string match -nocase "*client connecting*" $text]} { return }
		regexp {:\ ([^ ]+)\s\(([^@]+)@([^\)])+\)\s\[([^\]]+)} $text - unick ident host ip 
by FmX
Tue Jan 30, 2024 6:47 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 34793

Re: scan ip from a proxy scanner site

 ::pchecker::isvpn $ip $unick
proc isvpn {ip unick} 
putquick "PRIVMSG #test33 :$unick *@$ip +7d :$::pchecker::gmsg"
is that good CrazyCat ?
by FmX
Tue Jan 30, 2024 6:15 am
Forum: Script Requests
Topic: scan ip from a proxy scanner site
Replies: 58
Views: 34793

Re: scan ip from a proxy scanner site

Everything is fine now. Thanks mate. I have 1 more request but i will try alone to figure out how to achieve it. After Gline i want to report in certain channel nick and IP who was glined. now i will try to do it myself