Zero Identity
Username: Password:
[Forgot Password?] [Not Registered?]

ZI Store Updates

Zi Store

Online Users

Registered Users: 2016
Latest Registration: yhamrodne
Online Users: 12
(0 Members, 12 Guests)

Poll

What should be done first on the ZI overhaul?
Find more staff (45%) [10 Votes]
Fix all bugs (36%) [8 Votes]
Make new features (not challenges) (9%) [2 Votes]
Get more content (challenges etc) (9%) [2 Votes]

[Poll Archive]

Kr0wKr0w

Avatar

Last Login:
2012-01-20
Joined:
December 11 2009 01:08
Experience:
2
(19 day(s) ago)
The crashed tables for registration and other stuff is easy to fix (using the Mysql command "REPAIR TABLE").
ttyler333ttyler333
php coder
Avatar

Last Login:
0000-00-00
Joined:
May 09 2008 01:45
Experience:
1095.2
(20 day(s) ago)
according to a friend the registration doesn't work.
hack4uhack4u
ZI Owner
Avatar

Last Login:
0000-00-00
Joined:
March 30 2008 22:30
Experience:
20492
(21 day(s) ago)
Please do keep a list of all the bugs. They might eventually get fixed.. lol.
Hunter XHunter X

Avatar

Last Login:
0000-00-00
Joined:
September 25 2010 15:44
Experience:
0
(02 month(s) ago)
What we could do is start compling a list of bugs on the Tasks page, so if and when development resumes the developers know what needs doing.
Kr0wKr0w

Avatar

Last Login:
2012-01-20
Joined:
December 11 2009 01:08
Experience:
2
(02 month(s) ago)
Kewl, the domain renewed another year. :) Any other future plans?
Hunter XHunter X

Avatar

Last Login:
0000-00-00
Joined:
September 25 2010 15:44
Experience:
0
(02 month(s) ago)
I've got no idea. I'll send off an email to one of the admins in a moment to check, since I've been meaning to contact them anyway.
Hunter XHunter X

Avatar

Last Login:
0000-00-00
Joined:
September 25 2010 15:44
Experience:
0
(02 month(s) ago)
There seems to be ~10 guests on most days, but I have no idea if that's genuine users or crawler bots. If they are real users we need to do something to convince them to register.


Icon Zero Identity Forums - Basic - Basic 4 - I'm completely lost


Are you bored? Check out the unaswered threads!

Kuinchinu
Member


Avatar
Trainee

Joined: 08/21/2010
Last Seen: 2011-06-15
Experience: 62
Points: 275
#1 I'm completely lost on 01/01/1970 00:00
So I found the '4/include.html' but I have no idea what to do with it. I tried putting it at the end of the URL but it takes me to an error page. Can someone help me?
synthesis
Member
Dain Bramaged

Avatar
Trainee

Joined: 08/20/2010
Last Seen: 0000-00-00
Experience: 7
Points: 260
#2 on 01/01/1970 00:00
Hi!

Try looking at everything in that directory. You may find the answer.

Image
Kuinchinu
Member


Avatar
Trainee

Joined: 08/21/2010
Last Seen: 2011-06-15
Experience: 62
Points: 275
#3 on 01/01/1970 00:00
I'm unsure of how to look in the directory. Can someone tell me how to do that?
3l_f3n1x
Member
V Fan

Avatar
Professional Analyst

Joined: 08/06/2008
Last Seen: 0000-00-00
Experience: 299.25
Points: 905
#4 URLs explained. on 01/01/1970 00:00
First you should learn about how a URL works:

Absolute URL:
PROTOCOL://HOST[:PORT]/PATH[?GET_PARAMETERS]

Relative URL:
PATH[?GET_PARAMETERS]

1. Things between brackets are optional.
2. Upper case words are variables.

Absolute URLs Example:

a. Often the PROTOCOL for HTML documents is HTTP or HTTPS.
b. For this site the HOST is www.zeroidentity.org.
c. Also ZI works at the PORT 80. That's the regular port for HTTP protocol, so you don't need to put it explicitly.
d. And the PATH and GET_PARAMETERS are the rest of the URL.(This will be better explained in the Relative URL part)

So this is a regular URL for Zero Identity:
http://www.zeroidentity.org:80/PATH?[GET_PARAMETERS]

or without putting explicitly the PORT:
http://www.zeroidentity.org/PATH?[GET_PARAMETERS]


Relative URLs Example:

Let's say you are at this page:
https://www.zeroidentity.org:1337/directory_1/directory_2/index.php?id=1


Then now we know:
PROTOCOL = https
HOST = www.zeroidentity.org
PORT = 1337
PATH = /directory_1/directory_2/index.php
GET_PARAMETERS = id=1

The PATH has two directories and the file is index.php. A directory is like a folder in your desktop. So we can conclude the file index.php is located inside a directory called directory_2 and this directory_2 is located inside directory_1. You should notice index.php is one file, maybe that directory (directory_2) has more than one file, and even you'll find in there more directories. The directory_1 works the same as the directory_2. If you want to see what's inside any of those directories just search for them:

For directory_1:
https://www.zeroidentity.org:1337/directory_1

For directory_2:
https://www.zeroidentity.org:1337/directory_1/directory_2


Often directory listings are forbidden, but you never know ;)

Relative paths work this way:

a. ./ Current directory.
b. ../ Previous directory.

If you are here:
https://www.zeroidentity.org:1337/directory_1/directory_2/index.php?id=1


If you find a link like this:
./index.php
you'll go to the same page you are right now
https://www.zeroidentity.org:1337/directory_1/directory_2/index.php

If you find a link like this:
../index.php
you'll go to a previous directory:
https://www.zeroidentity.org:1337/directory_1/index.php

If you find a link like this:
../../index.php
you'll go to a previous directory:
https://www.zeroidentity.org:1337/index.php

And now you can understand that a link like this:
././././../././././../././././index.php
will take you here:
https://www.zeroidentity.org:1337/index.php

GET_PARAMETERS

They help the programmer make dinamic web pages. Sometimes you can find major bugs and vulnerabilities there like SQL injections, Cross Site Scripting attacks (XSS), Cross Site Request Forgery (XSRF), Redirections, among others.

It's always helpful to know the theory before you go and put in practice what you know. =D

"Beneath this mask there is more than flesh. Beneath this mask there is an idea, Mr. Creedy, and ideas are bulletproof." - V

BTW: My username was elfenix
Kuinchinu
Member


Avatar
Trainee

Joined: 08/21/2010
Last Seen: 2011-06-15
Experience: 62
Points: 275
#5 on 01/01/1970 00:00
that helped a lot thanks :)
3l_f3n1x
Member
V Fan

Avatar
Professional Analyst

Joined: 08/06/2008
Last Seen: 0000-00-00
Experience: 299.25
Points: 905
#6 on 01/01/1970 00:00
I'm glad you found it helpful =D

"Beneath this mask there is more than flesh. Beneath this mask there is an idea, Mr. Creedy, and ideas are bulletproof." - V

BTW: My username was elfenix


Who is watching forums


Users viewing this page: Guests (1)
Users viewing the forum: 0