-
Posts
915 -
Joined
-
Last visited
-
Days Won
7 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by WebDAV
-
someone lock this scam topic.
-
GR Χειροπέδες Σε 17Χρονο Καλλιεργητή Κάνναβης
WebDAV replied to DERVILION's topic in Tech/World News
TA XASISIA POU FITEVEIS LEW. KAHMENE -
Weapon League Of Legends Weapons (Interlude)
WebDAV replied to SpirakosDafuq™'s topic in Client Development Discussion
Just no words about that :D +1 -
Regarding The Fact A Guy Call Me Scammer Everywhere.
WebDAV replied to Stewie's topic in Report Section
TryHarders. -
GR Χειροπέδες Σε 17Χρονο Καλλιεργητή Κάνναβης
WebDAV replied to DERVILION's topic in Tech/World News
TOU VORFIN TA XORAFIA EINAI AFTA ! ROFL -
Resource 330 League Of Legends Renders
WebDAV replied to Katherine's topic in Graphics/GFX Resources/Tools
OP SHARE GJ -
oh yes u are a freaking Booster :DD Good Luck with it if i will find something i will give it free and without any payment Good Luck man!
-
Server Growing Faster Join Us!
- 51 replies
-
WTS Paysafecard To Paypal Method For Personal Use
WebDAV replied to vasi461's topic in Exchange Area
Usseles to much fees... -
[align=center]Here is how to access someone's facebook on your network Facebook send a cookie to the person loggin in in order to keep him signed in so our job is to get that cookie and use it to bypass login so we can use that facebook account without user/pass. Since im doing it from ubuntu, i need to install all the tools needed, here they are: ______________________________________________________________________________________ Gather your tools: [*] Add grease monkey to firefox [*] Install the greasemonkey cookie injector script from here [spoiler=''] Copy and past the javascript and save it as Snipa@HackCommunity.user.js [spoiler=image] To install the script just drag and drop it in your firefox page[spoiler=image] A box will pop up to install the script just click install [spoiler=image] (note that greasemonkey should be enabled and you need to restart firefox in order to work) [*] Install ettercap [spoiler=''] [*] Install SSLstrip [spoiler=''] [*] Install dsniff [spoiler=''] [*] Install wireshark [spoiler=''] ______________________________________________________________________________________ Explanation: To get the cookie , we need to see the traffic on our network, this is why we need wireshark One problem oppose, we want to see data send to/from a certain ip address , this mean you need the local ip of your target ; in this case its 192.168.1.104 Now we capture the cookie, and use it to login to facebook, this is done with greasemonkey ______________________________________________________________________________________ The attack: [*] Enable ip forwarding to be able to resend data that we get[spoiler=''] to enable ip forward:sudo sysctl -w net.ipv4.ip_forward=1to check if done corretly:cat /proc/sys/net/ipv4/ip_forward [*] Enable ip tables to redirect the target from port 80 to 1000 for SSLstrip to work [spoiler=''] [*] Start SSLstrip [spoiler=''] [*] ARPspoofing to position ourselfs between the router and the client (target) [align=right]-dsniff-[/align] [spoiler=''] [*] Start wireshark and select an interface to start seeing the traffic[spoiler=''] [*] Type this in the filter, and wait for the target to login on facebook [spoiler=''] [*] When he login, you will see this, just copy the printable text only, like i did [spoiler=''] [*] Now inject the cookie in your webbrowser, go to facebook, and press ALT+C to see this input box, and past there [align=right]-grease monkey-[/align][spoiler=''] [*] You can now refresh facebook, and there you go, you are logged in [spoiler=''] ______________________________________________________________________________________ [/align] Note : This is a Man In The Middle Attack (MITM) example, done on my personal facebook account, on my network, maxcheaters don't take resposability due to what you do with informations you got from this tutorial.
-
3.Write a program called Convert for inserting a distance in kilometers from the keyboard and convert it into miles (a mile is 1609 km). 4.Write Java program to allow the user to input his/her age. Then the program will show if the person is eligible to vote. A person who is eligible to vote must be older than or equal to 18 years old. Enter your age: 18 You are eligible to vote. 5.Write a Java program to determine whether an input number is an even number. 6.Write a Java program that determines a student’s grade. The program will read three types of scores(quiz, mid-term, and final scores) and determine the grade based on the following rules: -if the average score >=90% =>grade=A -if the average score >= 70% and <90% => grade=B -if the average score>=50% and <70% =>grade=C -if the average score<50% =>grade=F See the example output below: Quiz score: 80 Mid-term score: 68 Final score: 90 Your grade is B. 7.Write a Java program to calculate the revenue from a sale based on the unit price and quantity of a product input by the user. The discount rate is 10% for the quantity purchased between 100 and 120 units, and 15% for the quantity purchased greater than 120 units. If the quantity purchased is less than 100 units, the discount rate is 0%. See the example output as shown below: Enter unit price: 25 Enter quantity: 110 The revenue from sale: 275.0$ After discount: 2475.0$(10.0%) 8.Write a Java program to detect key presses.(use switch) If the user pressed number keys( from 0 to 9), the program will tell the number that is pressed, otherwise, program will show "Not allowed". 9. Write a Java program that allows the user to choose the correct answer of a question.(use switch) See the example below: What is the correct way to declare a variable to store an integer value in Java? a. int 1x=10; b. int x=10; c. float x=10.0f; d. string x="10"; Enter your choice: c 10.By using do while loop, write Java program to prompt the user to choose the correct answer from a list of answer choices of a question. The user can choose to continue answering the question or stop answering it. See the example below: What is the command keyword to exit a loop in Java? a. int b. continue c. break d. exit Enter your choice: b Incorrect! Again? press y to continue: 11.By using while loop Write Java program to prompt the user to choose the correct answer from a list of answer choices of a question. The user can choose to continue answering the question or stop answering it. See the example below: What is the command keyword to exit a loop in Java? a. int b. continue c. break d. exit Enter your choice: b Incorrect! Again? press y to continue: 12.Using a while loop Write a program that asks the user to enter a character then the program displays the character. So on! The program stops only if the user enters the character 't'. 13.Using do while loop Write a program that asks the user to enter a character then the program displays the character. So on! The program stops only if the user enters the character 't'.
-
Your First Java Program So today I'm going to teach you how to write, compile and execute your first java program. It is a simple program to display "Hello Hack Community" as the output. What do you need? You need nothing but JDK installed in your machine. We are going to write our code in Notepad and compile it via command prompt. Step 1 Write the following code in a new blank Notepad document. class HelloHC { public static void main(String args[]) { System.out.println("Hello Hack Community"); } } Step 2 Save the code in your projects folder. Make sure you save the file with same name as the class name (HelloHC in this case) and with an extension of .java Select the type All Files instead of Text Documents(*.txt). Step 3 Now it is time to compile your code. Navigate to your projects folder using command prompt. Type in the following command javac HelloHC.java If you did not get any error message, then your file has been compiled successfully.However, if you get an error message : 'javac' is not recognized as an internal or external command, operable program or batch file. You need to add the path of JDK's bin directory. path [Drive:]\[Path of jdk\bin Directory] This would be followed by the former command you gave i.e. javac HelloHC.java After compiling your code successfully, a new file would be created in your projects folder with same name HelloHC.class Now in order to execute the code you just compiled, just type in the following command java HelloHC Congratulations! You just executed your first Java Program! Cheers :) Updating the PATH Environment Variable You can run the JDK without setting the PATH environment variable, or you can optionally set it so that you can conveniently run the JDK executable files (javac.exe, java.exe, javadoc.exe, and so forth) from any directory without having to type the full path of the command. If you do not set the PATH variable, you need to specify the full path to the executable file every time you run it, such as: C:\> "C:\Program Files\Java\jdk1.7.0\bin\javac" MyClass.java It is useful to set the PATH variable permanently so it will persist after rebooting. To set the PATH variable permanently, add the full path of the jdk1.7.0\bin directory to the PATH variable. Typically, this full path looks something like C:\Program Files\Java\jdk1.7.0\bin. Set the PATH variable as follows on Microsoft Windows: Click Start, then Control Panel, then System. Click Advanced, then Environment Variables. Add the location of the bin folder of the JDK installation for the PATH variable in System Variables. The following is a typical value for the PATH variable: C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Java\jdk1.7.0\bin Note: The PATH environment variable is a series of directories separated by semicolons (;) and is not case-sensitive. Microsoft Windows looks for programs in the PATH directories in order, from left to right. You should only have one bin directory for a JDK in the path at a time. Those following the first instance are ignored. If you are not sure where to add the path, add it to the right of the value of the PATH variable. The new path takes effect in each new command window you open after setting the PATH variable. Source : Oracle's Documents
-
Introduction to Java for Beginners Brief History Java was developed by James Gosling and his team from Sun Microsystems in 1991. It was originally called Oak at that time and was renamed later to java. Java 1.0 was released in 1995 for public implementation for the first time. In the same year, Netscape Incorporated released its latest version of Netscape browser which was capable of running Java programs. Features of Java Java is Object Oriented Programming (OOP) language, i.e. Java is centered on creating and manipulating objects, and making them work together. This allows you to create modular programs and reusable code. Java takes pride in being a platform independent programming language. Java compilers generate a byte code upon compilation of a java source code.This byte code can be distributed and interpreted on any machine by JVM (Java Virtual Machine) irrespective of its platform. With multi-threading present in Java, it is possible to write programs that can carry out multiple tasks simultaneously. It allows developers to construct smoothly running interactive applications. Java was one of first languages to make security a part of its design. Java puts a lot of emphasis on early checking for possible errors and eliminate them to avoid errors during run time. Java is designed for easy implementation of programming for the distributed environment of the internet. Advantages of Java Simplicity Platform Independence Security Reliability Object Oriented Programming Multi-Threading Disadvantage of Java to maintain backward compatibility, some newer features like generics are implemented badly; you notice that this language gets old; other features that newer languages like C# have are missing at all a lot of boilerplate code reverse engineering is very easy, because Java is compiled to an intermediate language (which can also be an advantage, depending on what you want to do though) Usage of Java Java is used to develop a variety of applications we see in daily life ranging from web applications to mobile applications. You can find usage of Java in world wide web, laptops, mobile phones, netbooks, tablets, and many other electronic appliances too. Standard Java Platform and IDE to use If you do not have Standard Java Platform in your machine, you can download it from here. After installing the JDK in your machine, all you need is an IDE for java. I personally prefer using Eclipse for this purpose. Netbeans isn't a bad choice either. You can download Eclipse here. Please note that you must have the Java Environment in your machine before you install the IDE. If you do not wish to use any IDE, you could write your programs in any text editor (e.g. Notepad) and compile it via command prompt too. Extra Useful Links Java Tutorials Java API Specifications E-Book for starter Beginning Programming with Java for Dummies Source: hackcommunity
-
Mesa sta bug einai afto to pack...
-
GR Ο Ηθοποιός Robin Williams Είναι Νεκρός, R.i.p. Robin Williams
WebDAV replied to Katherine's topic in Tech/World News
kalos eitane mwre :P -
Share Gracia Fly Island For Interlude
WebDAV replied to kali's topic in Client Development Discussion
humm wait kali to answser you for this prob only he knows how to fix it :D -
GR Ο Ηθοποιός Robin Williams Είναι Νεκρός, R.i.p. Robin Williams
WebDAV replied to Katherine's topic in Tech/World News
R.I.P Robin Williams. -
[Share]Free webhost & Domains(.com etc) for 1 year!!!
WebDAV replied to InTheEndॐ's topic in WebHosting Reviews
This guy is banned and not unbanned