Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/16/11 in all areas

  1. un documentar interesant despre activitatile romanilor in Spania,despre Ion Clamparu,cu proxenetismul,si baietii cu ,clonarea de carduri...(min.30)din pacate asta este imaginea noastra ;( aici
    1 point
  2. @cei care vor tutorial: tutorial Unde nu se intelege, motivul este clar. Daca apelati la metoda "crack" introduceti orice string mai mic de 9 caractere.
    1 point
  3. What is a Cookie? A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With ASP, you can both create and retrieve cookie values. How to Create a Cookie? The "Response.Cookies" command is used to create cookies. Note: The Response.Cookies command must appear BEFORE the <html> tag. In the example below, we will create a cookie named "firstname" and assign the value "Alex" to it: <% Response.Cookies("firstname")="Alex" %> It is also possible to assign properties to a cookie, like setting a date when the cookie should expire: <% Response.Cookies("firstname")="Alex" Response.Cookies("firstname").Expires=#May 10,2012# %> How to Retrieve a Cookie Value? The "Request.Cookies" command is used to retrieve a cookie value. In the example below, we retrieve the value of the cookie named "firstname" and display it on a page: <% fname=Request.Cookies("firstname") response.write("Firstname=" & fname) %> Output: Firstname=Alex A Cookie with Keys If a cookie contains a collection of multiple values, we say that the cookie has Keys. In the example below, we will create a cookie collection named "user". The "user" cookie has Keys that contains information about a user: <% Response.Cookies("user")("firstname")="John" Response.Cookies("user")("lastname")="Smith" Response.Cookies("user")("country")="Norway" Response.Cookies("user")("age")="25" %> Read all Cookies Look at the following code: <% Response.Cookies("firstname")="Alex" Response.Cookies("user")("firstname")="John" Response.Cookies("user")("lastname")="Smith" Response.Cookies("user")("country")="Norway" Response.Cookies("user")("age")="25" %> Assume that your server has sent all the cookies above to a user. Now we want to read all the cookies sent to a user. The example below shows how to do it (note that the code below checks if a cookie has Keys with the HasKeys property): <html> <body> <% dim x,y for each x in Request.Cookies response.write("<p>") if Request.Cookies(x).HasKeys then for each y in Request.Cookies(x) response.write(x & ":" & y & "=" & Request.Cookies(x)(y)) response.write("<br />") next else Response.Write(x & "=" & Request.Cookies(x) & "<br />") end if response.write "</p>" next %> </body> </html> Output: firstname=Alex user:firstname=John user:lastname=Smith user:country=Norway user:age=25 What if a Browser Does NOT Support Cookies? If your application deals with browsers that do not support cookies, you will have to use other methods to pass information from one page to another in your application. There are two ways of doing this: 1. Add parameters to a URL You can add parameters to a URL: <a href="welcome.asp?fname=John&lname=Smith">Go to Welcome Page</a> And retrieve the values in the "welcome.asp" file like this: <% fname=Request.querystring("fname") lname=Request.querystring("lname") response.write("<p>Hello " & fname & " " & lname & "!</p>") response.write("<p>Welcome to my Web site!</p>") %> 2. Use a form You can use a form. The form passes the user input to "welcome.asp" when the user clicks on the Submit button: <form method="post" action="welcome.asp"> First Name: <input type="text" name="fname" value="" /> Last Name: <input type="text" name="lname" value="" /> <input type="submit" value="Submit" /> </form> Retrieve the values in the "welcome.asp" file like this: <% fname=Request.form("fname") lname=Request.form("lname") response.write("<p>Hello " & fname & " " & lname & "!</p>") response.write("<p>Welcome to my Web site!</p>") %> Source w3schools.com/ASP/asp_cookies.asp
    1 point
  4. ce sa fie png ,gif animatie?
    1 point
  5. "primu venit primul servit." pm gata. prodil89 si temp. am mai primit 3 care vrea pm me ! Krisler12™, ronin33dan, informatician. gata, s-au dat. io vi-am dat conturile degeaba ? majoriatea aveti upload si download 0.
    -1 points
  6. Am asteptat activarea HWID-ului 2 sapt (WTF), dupa care am incercat cel mai "ieftin" truc posibil... si a mers Descarcati cripterul de aici http://www.sendspace.com/file/vjmobx Parola in PM (cei care simtiti ca nu meritati parola nu va obositi sa dati PM) In arhiva am facut un fisier text (cum_sa.txt) care va explica ce trebuie facut pentru a folosi crypterul. Nu va spun aici pentru a evita noobii care-l au si nu il pot folosi NU am lipit nici un Keylogger/Stealer/Server asa ca feel free to scan it Am incercat sa criptez un server de DarkComet...fara succes Daca reusiti sa criptati server DarkComet VA ROG FRUMOS luminati-ma si pe mine, postati aici sau in PM ..PLEASE Doar de proba am criptat un server , fara sa mearga... (fara EOF) http://vscan.novirusthanks.org/analysis/76c7b15b30369e07e40b40f47977469d/bXVpZWx1bWF0YS1leGU=/ Screenshot : http://imageshack.us/photo/my-images/155/crypterb.png/ UPDATE : DarkComet : merge (MultiDropper > Crypter) detectat de 1 din 9 antivirusi (AVG mai exact) IStealer 6.3 : merge ; detectat de 1 din 9 antivirusi (AVG mai exact) HCStealer : merge ; detectat de 1 din 9 antivirusi (AVG mai exact) Trece de KasperskyPure fara probleme +rep daca va este util
    -1 points
×
×
  • Create New...