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

by w00f
Thu Mar 18, 2010 12:34 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

no problemo,
thanks for the effort :)
by w00f
Wed Mar 10, 2010 8:04 am
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

Thanks nml375, but it still returns eof =/
lol this is getting weirder
by w00f
Sun Mar 07, 2010 2:38 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

Yea sure.

openssl s_client -showcerts -connect xpto.com:443 >> ssl
http://pastebin.com/scQq6ZTK

openssl s_client -showcerts -connect xpto.com:443 -CApath /etc/ssl/certs >> ssl2
http://pastebin.com/UkM7ps5V
by w00f
Sat Mar 06, 2010 10:34 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

Setting the debug value to 0/1 will output the following when executing the wget proc,

::tls::debug 0
TLS/sock7: error: certificate verify failed

::tls::debug 1
TLS/sock7: verify/3: Bad Cert: self signed certificate in certificate chain (rc = 0)

:\
by w00f
Fri Mar 05, 2010 9:54 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

here's the log/handshake [01:40a] -modtcl • TLS/sock18: handshake/start: before/connect initialization [01:40a] -modtcl • TLS/sock18: connect/loop: before/connect initialization [01:40a] -modtcl • TLS/sock18: connect/loop: SSLv2/v3 write client hello A [01:40a] -modtcl • TLS/sock18: connect/exit: SS...
by w00f
Fri Mar 05, 2010 4:49 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

Yes nml375, i've already tried -cadir and -cafile options, same error. The certificate it's not self-signed, (curl verbose output) * successfully set certificate verify locations: * CAfile: none * CApath: /etc/ssl/certs * SSLv3, TLS handshake, Client hello (1): * SSLv3, TLS handshake, Server hello (...
by w00f
Tue Mar 02, 2010 7:25 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

Well, i've updated the SSL certs (using openssl) then rehashed the certs, tested with curl/wget and it worked, everything seems to work but TCL =/ here's the output from curl root@tehplanet:~# curl -I --capath /etc/ssl/certs https://xpto.com HTTP/1.1 200 OK Date: Tue, 02 Mar 2010 22:59:58 GMT Server...
by w00f
Mon Mar 01, 2010 8:02 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

:/ That's what i though, just tried /usr/bin/wget with the SSL link and it worked like a charm.

So, it's most likely a SSL package problem ?

Using the non-ssl link isn't really a problem, i was just "curious"

Thanks :)
by w00f
Mon Mar 01, 2010 7:20 pm
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

Thanks speechles, i've added the http status if (all the others are there already) the status returned is 'eof', which is weird :o [11:10p] jackass • s:wget "https://xpto.com/index.php?action=dl&id=133" [11:10p] -modtcl • [DEBUG] URL: https://xpto.com/index.php?action=dl&id=6437&qu...
by w00f
Fri Feb 26, 2010 5:21 pm
Forum: Scripting Help
Topic: [SOLVED] expr / rand / int help
Replies: 3
Views: 2707

format %.2f <value>
will output what you want.

ie:
.format %.2f "5.436987"
5.44
by w00f
Fri Feb 26, 2010 7:24 am
Forum: Scripting Help
Topic: HTTP/TLS Package
Replies: 21
Views: 21839

HTTP/TLS Package

Hey guys, i got this little problem within my wget tcl procedure when calling http::get to reach one ssl server. Works fine if i remove the ssl from the URL (-https +http). here's is a bit of the script package require http package require tls http::register https 443 [list ::tls::socket -require 0 ...
by w00f
Tue Mar 11, 2008 1:14 pm
Forum: Scripting Help
Topic: Help with regexp
Replies: 1
Views: 1559

Help with regexp

hey guys , i have a little problem in regex while grabin some info from other bot. (@bot) NEW SLAP : Someone pimp slaps nick with a brain here a little part of the code set arg [stripcodes bcru $arg] regexp -- {^(NEW SLAP: (.*?) pimp slaps (.*?) with (.*?))$} $arg -> by who with that works if there ...
by w00f
Tue Feb 12, 2008 12:21 am
Forum: Script Requests
Topic: Allakhazam Script
Replies: 9
Views: 5019

lol ya its better you use puthelp instead of putquick , i don't rly have any probs cuz where i run my eggs i have special flags for them ;x

ill take a better look at your request when i got some time :)

btw starpossen posted one link that might be useful, you might wanna grab and test it.
by w00f
Sun Feb 10, 2008 9:00 pm
Forum: Script Requests
Topic: Allakhazam Script
Replies: 9
Views: 5019

set allakhazam(search) "!item" set allakhazam(url) "http://camelot.allakhazam.com/searchdb.html?a=Search&terms=" package require http bind pub -|- $allakhazam(search) search_item setudef flag allakhazam proc search_item {nick host hand chan arg} { if {[lsearch -exact [channe...
by w00f
Mon Jan 28, 2008 2:51 am
Forum: Script Requests
Topic: !needadmin [Filled]
Replies: 6
Views: 3799

### # trigger set admin(cmd) "!needadmin" # Admins list set admin(list) "admin1 admin2 admin3" ### bind pub - $admin(cmd) pub:needadmin proc pub:needadmin { nick host hand chan arg } { global admin set counter 0 foreach ad [split $admin(list)] { if {[onchan $ad $chan]} { putquic...