thats shadows site http://bestklub.com
Hiding Session Id
Collapse
X
-
Not everyone can do what something else did... Anyway I have parsword protect owner tools and I download backup of my database every day...whatmp3.name - search mp3 on mobile
Comment
-
Originally posted by mobileGIGS View PostI dnt think u undastand wot we're saying. Okay to illustrate, use mobile.aolsearch.com to log into a site dat uses dat method of ip/brwsr session validation, tel me if u get past login page or 2pages afta login. You'd get logged out. Why? They change their ip randomly. So does other network providers. They dnt usually use static ips. Therefore it may work 4 u cuz ur network uses static ip bt i can assure ur stubborn ass dat u'l get ppl leaving ur site so fast cuz they r gettn logged owt. But hey u can put ur ads in ur "your session has expired" page so ur visitors can c it often ROFL.whatmp3.name - search mp3 on mobile
Comment
-
I will change all the pages... Is boooring, but is safer... // If i disconnect frow and i go back to the site with last url option (on nokia) , i am still logged in ??? When will I be logged out automatic? Nothing will be added to addonline function???whatmp3.name - search mp3 on mobile
Comment
-
If i disconnect from wap and i go back to the site with last url option (on nokia) , i am still logged in ??? When will I be logged out automatic? Nothing will be added to addonline function???whatmp3.name - search mp3 on mobile
Comment
-
Originally posted by mobileGIGS View Postis dat a question? Anyway im nt beggin u to remove ur ip/brwser ****, im just asking u think out of the box. Wit additional code, u can stil validate a valid user even if ip changed. Its all in ur ability 2 think hard.whatmp3.name - search mp3 on mobile
Comment
-
I'l give u a simple algorithm:
in core.php, add 2 d beginn,
session_start();
in login.php, after validatn a username n pwd, add
$_SESSION['incase'] = md5(uniqueid(rand(),true));
create a column in ibwf ses and when INSERTING d $sid and $ubr into ibwf ses, also associate $_SESSION['incase'] to d $sid e.g
INSERT INTO ibwf_ses SET id=$sid, newColumn=$_SESSION['incase'], uid=$uid. . .
Then, in islogged function, add sumtin like
IF getip() != $storedip {
IF !empty($_SESSION['incase']) {
$brw = explode("/",$_SERVER['HTTP_USER_AGENT']);
IF $_SESSION['incase'] == $storedNewColumnSession && $brw[0] == $storedBrowser {
return true;
}
}
return false;
}
LIKE I SAID ITS AN ALGORITHM, USE UR HEAD TO CODE.
Comment
-
If I use your algorithm I still have to modify &lsid=$sid in every page ??
PHP Code:// I want to use
$sid = md5("Shad0w");
whatmp3.name - search mp3 on mobile
Comment
-
No u dont have to. Basically d script sets a session after logn on d brwser n stores same in db, IF ip check breaks, it checks if d session was set on d brwser, if it matches d database session and if it was actually d same brwser dat set d session thats requesting it...if all those r tru, then it is a valid user. Else break. If i wasnt on mobile i'd code it 4 u.
Comment
-
Originally posted by mobileGIGS View PostI'l give u a simple algorithm:
in core.php, add 2 d beginn,
session_start();
in login.php, after validatn a username n pwd, add
$_SESSION['incase'] = md5(uniqueid(rand(),true));
create a column in ibwf ses and when INSERTING d $sid and $ubr into ibwf ses, also associate $_SESSION['incase'] to d $sid e.g
INSERT INTO ibwf_ses SET id=$sid, newColumn=$_SESSION['incase'], uid=$uid. . .
Then, in islogged function, add sumtin like
IF getip() != $storedip {
IF !empty($_SESSION['incase']) {
$brw = explode("/",$_SERVER['HTTP_USER_AGENT']);
IF $_SESSION['incase'] == $storedNewColumnSession && $brw[0] == $storedBrowser {
return true;
}
}
return false;
}
LIKE I SAID ITS AN ALGORITHM, USE UR HEAD TO CODE.My Blog: http://jhommark.blogspot.com
My Facebook: http://www.facebook.com/jhommark
My Official Site: http://www.undergroundweb.tk
My Community Site: http://undergroundwap.xtreemhost.com
Comment
-
I understand mostly of the script... But in logout page i have to put sessiondistroy() ??
And ALL mobile browsers support that?? And if someone disconnects and use last url option is he logged out??whatmp3.name - search mp3 on mobile
Comment
-
Originally posted by mobileGIGS View PostI'l give u a simple algorithm:
in core.php, add 2 d beginn,
session_start();
in login.php, after validatn a username n pwd, add
$_SESSION['incase'] = md5(uniqueid(rand(),true));
create a column in ibwf ses and when INSERTING d $sid and $ubr into ibwf ses, also associate $_SESSION['incase'] to d $sid e.g
INSERT INTO ibwf_ses SET id=$sid, newColumn=$_SESSION['incase'], uid=$uid. . .
Then, in islogged function, add sumtin like
IF getip() != $storedip {
IF !empty($_SESSION['incase']) {
$brw = explode("/",$_SERVER['HTTP_USER_AGENT']);
IF $_SESSION['incase'] == $storedNewColumnSession && $brw[0] == $storedBrowser {
return true;
}
}
return false;
}
LIKE I SAID ITS AN ALGORITHM, USE UR HEAD TO CODE.
but then your leaving a hole for ghost surfer etc: :P
Comment
Comment