Id finder

02/24/2020 20:43 Cuneyt12#1
My first java project

Virus total : [Only registered and activated users can see links. Click Here To Register...]

Example: [Only registered and activated users can see links. Click Here To Register...]

Sources: [Only registered and activated users can see links. Click Here To Register...]

Chance log: [Only registered and activated users can see links. Click Here To Register...]
02/24/2020 20:44 Natsu Dragneel#2
Quote:
Originally Posted by Cuneyt12 View Post
My first java project
Can you send an virustotal-link pls?
02/24/2020 20:46 Cuneyt12#3
Quote:
Originally Posted by Natsu Dragneel View Post
Can you send an virustotal-link pls?
added
02/25/2020 02:26 OllieTM#4
Quote:
Originally Posted by Cuneyt12 View Post
My first java project

Virus total : [Only registered and activated users can see links. Click Here To Register...]
Hi, what ID is this exactly finding? If it's their user ID, it's wrong.

EDIT: Just if you didn't know, the ID stored in the URL is in base62 form, you will then need to convert it into base 10 to get their ID. If you need to double check numbers, DOStats has an ID finder that you can use as a checker.
02/25/2020 06:12 Cuneyt12#5
Quote:
Originally Posted by OllieTM View Post
Hi, what ID is this exactly finding? If it's their user ID, it's wrong.

EDIT: Just if you didn't know, the ID stored in the URL is in base62 form, you will then need to convert it into base 10 to get their ID. If you need to double check numbers, DOStats has an ID finder that you can use as a checker.
Hi, already i converted from base62 to base10. It works for me. Just put profile link and click to find
02/25/2020 17:27 Moneypulation#6
Simply doing substring(43,48) is an unreliable way to extract the string. It will for instance already break when you enter an int2 profile url. A better way to to this would be to extract it using String between ("profile=","&profileCheck")
02/25/2020 18:06 Cuneyt12#7
Quote:
Originally Posted by Moneypulation View Post
Simply doing substring(43,48) is an unreliable way to extract the string. It will for instance already break when you enter an int2 profile url. A better way to to this would be to extract it using String between ("profile=","&profileCheck")
well, does not work for int servers. I will fix it

Quote:
Originally Posted by Moneypulation View Post
Simply doing substring(43,48) is an unreliable way to extract the string. It will for instance already break when you enter an int2 profile url. A better way to to this would be to extract it using String between ("profile=","&profileCheck")
Fixed. Can you check it? Thanks