Thread Session-Id aus Urls entfernen (5 answers)
Opened by kristian at 2010-03-11 20:55

esskar
 2010-03-12 09:30
#134534 #134534
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
ungetestet
Code (perl): (dl )
1
2
3
4
5
6
7
8
use URI;
use URI::QueryParam;

my $uri = URI->new($new_url);
foreach my $sid_string(qw(sessionid lsessionid jsessionid SID PHPSESSID SessionID BV_SessionID osCsid)){
   $uri->query_param_delete($sid_string);
}
print "$uri";

View full thread Session-Id aus Urls entfernen