// #php — 2008-03-01
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
00:37:57 Quit: drexen ([email protected]) Exit:
00:53:14 Quit: MedNez ([email protected]) Exit: MedNez
02:35:11 Join: dExYmAcO ([email protected]) to #php
09:17:30 Join: Loserbait ([email protected]) to #php
09:19:05 Quit: robert_ ([email protected]) Read error to robert_: Operation timed out
09:20:51 Quit: teranoid ([email protected]) Ping timeout for teranoid
10:19:29 Join: robert_ ([email protected]) to #php
11:32:22 Join: shodan ([email protected]) to #PHP
11:34:32 Quit: optimus ([email protected]) Read error to optimus: Operation timed out
11:34:33 Nick: shodan is now known as optimus
13:11:15 Join: Lish_ ([email protected]) to #php
13:11:24 <Lish_> hai
14:30:11 Join: gs69azza ([email protected]) to #php
14:30:31 <gs69azza> i have a question
14:30:44 <gs69azza> i am trying to post to a site server side
14:31:05 <gs69azza> and re-direct client side
14:31:08 <gs69azza> is that possible?
14:31:19 <teq> what
14:31:25 <gs69azza> ok
14:31:30 <gs69azza> ill give an example
14:31:34 <gs69azza> i have a form
14:31:35 <teq> arent you from unre.st ?
14:31:40 <teq> idlerpg etc
14:31:42 <gs69azza> that takes in 3 variablesd
14:31:43 <gs69azza> yeah i am
14:31:51 <teq> yeah so if you get $_POST['variable']
14:31:51 <gs69azza> well
14:31:52 <gs69azza> was
14:31:56 <gs69azza> yeah i have
14:31:58 <teq> and you want it to post to another site automatically?
14:32:03 <gs69azza> yep
14:32:04 <Lish_> blah blah blah
14:32:05 <Lish_> :D
14:32:07 <teq> yeah can be done
14:32:18 <Lish_> oh :( i need to learn nerdy stuff for work, it makes me depressed
14:32:24 <Lish_> maybe one of u hobos can tutor me
14:32:25 <teq> so what you do is chuck in a fake form with value="<?=$_POST['variable']?>" etc
14:32:25 <Lish_> :D
14:32:27 Part: tropical^lil ([email protected]) from #php
14:32:33 <Loserbait> Lish_: On what D:
14:32:39 <Lish_> html
14:32:40 Part: dExYmAcO ([email protected]) from #php
14:32:40 <Lish_> and
14:32:41 <teq> and have <body onload="javascript:submit.form();">
14:32:47 <Loserbait> HTML's eeeeeasy though :P
14:32:47 <Lish_> cobol? (is that right?)
14:32:53 <Loserbait> Oh... COBOL's lame.
14:33:00 <gs69azza> im just making a free sms spoofing site
14:33:04 <gs69azza> i got it working
14:33:04 <Lish_> well they both look pretty stupid
14:33:07 <Loserbait> :)
14:33:08 <gs69azza> but need touch ups
14:33:20 <Lish_> i dont know why things have to be coded cant they just work without all the wonky writing
14:33:21 <Lish_> haha
14:33:21 <Lish_> :D
14:34:30 <gs69azza> i was using header ( "Location: http://url.here" )
14:34:42 <gs69azza> to re-direct client
14:34:48 <gs69azza> but i want to do that serverside
14:35:06 <teq> that will do a GET
14:35:25 <teq> to fake a post you have to generate a form page html and have it automatically submit using javascript
14:35:37 <gs69azza> yeah i ahve that
14:35:49 <gs69azza> it has 3 variables
14:35:53 <gs69azza> which the html assigns
14:35:59 <gs69azza> then in a sepearte php
14:36:03 <gs69azza> i have
14:36:04 <gs69azza> <?php
14:36:04 <gs69azza> $mobile = $_POST["fromMobile"];
14:36:04 <gs69azza> $number = $_POST["toMobile"];
14:36:04 <gs69azza> $message = $_POST["msg"];
14:36:14 <gs69azza> header( "Location: http://www.viasms.com.au/send.php?user=$viasmsuser&pass=$viasmspass&to=$number&msg=$message&from=$mobile");
14:36:14 <gs69azza> ?>
14:36:21 <gs69azza> with some other shit ofcourse
14:36:58 <gs69azza> but i want to point the server to http://www.viasms.com.au/send.php?user=$viasmsuser&pass=$viasmspass&to=$number&msg=$message&from=$mobile
14:37:04 <gs69azza> and re-direct the client to another site
14:38:03 <teq> oh
14:38:13 <teq> so you'll have to spawn another process
14:38:24 <teq> or use a socket to do that
14:38:41 <teq> $socket = fsockopen(other server port 80 etc etc);
14:38:44 <gs69azza> so it takes the $mobile $number $message and posts to http://www.viasms.com.au/send.php?user=$viasmsuser&pass=$viasmspass&to=$number&msg=$message&from=$mobile and passes the client onto another site
14:38:54 <teq> fwrite ("GET /send.php?user=blahblah\n";)
14:39:05 <teq> fwrite($socket, "Host: www.visasms.com.au\
14:39:07 <teq> n");
14:39:07 <teq> etc
14:39:11 <gs69azza> ahhh
14:39:12 <gs69azza> awesome
14:39:20 <gs69azza> well this is second time using PHP
14:39:21 <gs69azza> so yeah
14:39:26 <gs69azza> learning experience
14:40:16 <teq> jesus christ
14:40:20 <teq> my girlfriends making french martinis
14:40:26 <teq> shes got the fucking mixer full as a good
14:40:34 <teq> goog*
14:40:41 <teq> haha
14:40:49 <teq> i gotta go watch this, its going to go everywhere
14:42:08 <Lish_> hmm
14:42:10 <Lish_> im tired
14:45:00 Quit: Loserbait ([email protected]) Read error to Loserbait: Connection reset by peer
15:03:29 Join: teranoid ([email protected]) to #php
15:37:27 * robert_ eats Lish_
15:51:05 * Lukian cuddles Lish_
16:30:37 Join: MedNez ([email protected]) to #php
16:34:59 Join: Nabil ([email protected]) to #php
16:35:37 <Nabil> is there any downloadable Database of IP Addresses, ISP, Geographical Location .....?
16:39:10 <MedNez> http://www.google.com.au/search?hl=en&safe=off&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=ip+geographic+database&spell=1
16:39:14 <MedNez> google is your friend :)
16:53:59 <Nabil> cheers buddy
17:17:12 Quit: Nabil ([email protected]) Exit:
17:53:10 Join: keenly ([email protected]) to #PHP
18:57:21 Part: gs69azza ([email protected]) from #php
21:27:40 Nick: Lukian is now known as Lukian_
22:22:49 Join: ramp ([email protected]) to #php
22:22:51 Part: ramp ([email protected]) from #php
22:59:12 <damian> memory[Usage: 1084/2048MB (52.93%)]
23:02:18 <damian> graphics card[NVIDIA GeForce 7300 LE]
23:04:56 <teranoid> Wish I had a script that'd let me do that :(
23:06:47 <damian> liar!
23:08:06 <teranoid> I don't have one but I can tell you my graphics card :P
23:08:59 <teranoid> 8800GTS :)
23:09:27 <teranoid> Kinda meh though... for some reason, games don't run as smoothly as they should. I want an anti-aliased Portal, dammit!
23:09:29 <damian> give it to me!
23:18:09 Join: Nixta ([email protected]) to #php
23:19:02 Part: Nixta ([email protected]) from #php
Search this day's buffer:
