Monday, September 19, 2016

What is a 404 error page mean?

In 1992 Tim Berners-Lee defined all the HTTP (Hypertext Transfer Protocol) codes based on the FTP (File Transfer Protocol) status codes. If you break it down, 

  • The first '4' indicates the error is a client error
  • Second the '0' indicates a general syntax error
  • Final '4' refers to the specific error code in the '4xx' group of error codes.

List of HTTP status Code

So, in brief you can say that, the 404 or Not Found error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested. The web site hosting server will typically generate a "404 Not Found" web page when a user attempts to follow a broken or dead link; hence the 404 error is one of the most recognizable errors encountered on the World Wide Web.

Friday, September 2, 2016

Thoughts

  • THE ONLY TIME SUCCESS COMES BEFORE WORK IS IN THE DICTIONARY
  • YOU MISS 100% OF THE SHOTS YOU DON'T TAKE
  • A MAN WITHOUT PLANS FOR HIS FUTURE WILL ALWAYS RETURNS TO HIS PAST
  • GREAT THINGS ALWAYS FALL JUST OUTSIDE YOUR COMFORT ZONE
  • SEEK RESPECT NOT ATTENTION, IT LASTS LONGER
  • GREAT THINGS DON'T EVER COME FROM COMFORT ZONES
  • DECIDE WHERE YOU WANT TO BE AND DON'T STOP UNTIL YOU GET THERE
  • ONLY A KING CAN ATTRACT A QUEEN AND ONLY A QUEEN CAN KEEP A KING FOCUSED
  • YOU CAN EITHER BE THE MAN OR YOU CAN WORK FOR THE MAN
  • I LOVE TO SHOP BUT I'M NOT BUYING YOUR BULLSHIT
  • NO ALARM CLOCK NEEDED, MY PASSION WAKES ME UP
  • THERE'S NO ELEVATOR TO SUCCESS, YOU HAVE TO TAKE THE STAIRS
  • GRIND WHILE THEY SLEEP LEARN WHILE THEY PARTY LIVE LIKE THEY DREAM
  • DON'T LIVE THE SAME YEAR 75 TIMES AND CALL IT A LIFE


Monday, August 8, 2016

5 Great Visual Studio Keyboard Shortcuts

Following are five of my favorite keyboard shortcuts in Microsoft Visual Studio.

1)Move Code Alt+Up/Down

This keyboard shortcut is new in Visual Studio 2013. If you put the cursor on a line of code and use the Alt+Up Arrow keys, the line of code you've selected moves up. If you use the Alt+Down Arrow keys, the line of code selected moves down.

2)Create Collapsible Region Ctrl+M+H/Ctrl+M+U

Chances are you've noticed the "+" and "-" symbols in the margins that let you collapse and expand your classes and functions. Did you know you can create your own collapsible regions? If you select a section of code and then use the key sequence Ctrl+M+H, you turn that region into a collapsible/expandable region. The key sequence Ctrl+M+U will remove the collapsible region. It doesn't delete the code, it just removes the icon that lets you expand and collapse.

3)Comment Code Block Ctrl+K+C/Ctrl+K+U

Whether it's because you're trying to track down a "but," or experimenting with code change, from time to time you'll want to comment and uncomment blocks of code. If you select a block of code and use the key sequence Ctrl+K+C, you'll comment out the section of code. Ctrl+K+U will uncomment the code.

4)Peek Definition Alt+F12

When you're going through your code and you want to examine the code in the method you're calling, many programmers will use the F12 key or the pop-up menu option Go To Definition. Go To Definition will navigate to the called method; however, many times you don't need to navigate to the code. Sometimes, you just want a quick look at the method. If you've installed Visual Studio 2013, there's a new keyboard shortcut -- Alt+F12 -- that will give you a preview of the method being called inline. You can use the Esc key to close the preview.

5)Navigate Forward/Backward Ctrl+–/Ctrl+Shift+–

When you have multiple files open at the same time, you might want a way to quickly move back and forth between two or three different locations in your code. If you've moved from one location to another you can use the keyboard sequence <Ctrl>+– to move to the previous location and then you can return using Ctrl+Shift+–.

Wednesday, June 29, 2016

Create XML using EXCEL

Many a time I have got question about how to create XML with excel, So I decided to add this into my blog. Hope this will help the readers.

step 1:
Create one schema file (A template that we will use to generate the xml).
Eg. (Save following lines in dataSchema.xml file)

















Step 2:
Open your excel file containing the data.
CountryID CountryName
1 India
2 Pak
3 Srilanka
4 China
5 Koria


Step 3:
Go to the Developer TAB, if it is not on the top then you need to enable it from (File > Option )

Step 4:
Click "Source" under XML.
It will open XML source panel, having two buttons at the bottom. Click "XML Maps...".

Step 5:
Click "Add" to the XML Maps window.

Step 6:
Select "dataSchema.xml" file that we created in Step 1
Click OK twice

Step 7:
In XML Source you can now see the TREE VIEW of your columns.

Step 8:
Drag and Drop each column to the first row of your data.

Step 9.
Click "Export" button in Developers > XML tab.

Step 10:
You can now save this file as XML and that's it. Done.




Tuesday, June 7, 2016

Which programing languages are useful for hacking

Important Programming languages for Hackers

Many of our readers often send us queries about which programming language they should learn. Some want to know quick fix hacking solutions. Almost all tech gadgets are built with coding. Every App, game or site that you use is programmed in a particular computer language. You need to know that hacking is not a click-of-a-button job but a serialized and compartmentalized vocation which uses different programming languages for different uses.

Most of the websites out there will give you list of most popular programming languages in the world. We at Techworm try to make it more easy for budding security researchers and hackers by breaking up the programming languages used by hackers.

Hacking is usually meant to break a code. There are three sections of hacking ― Web Hacking, Exploit Writing & Reverse Engineering and each of it requires different programming language

1. Web Hacking

Since most of the tech is build around world wide web, it is important to learn web hacking to be a good hacker. Let’s say you are interested in hacking web apps and/or websites then you will need to learn web coding. Websites use mostly HTML, PHP and JavaScript so it is important to learn these three.

HTML:

One of the easiest and widely used static markup web language present in each and every website you see in your browser. It’s recommended to learn HTML because it helps understanding web actions, response, and logic.

JavaScript:

JS is a client-side web programming mostly used in web sites for better user interface and quick response. If you are interested in a hacking career you need to learn JavaScript because it helps to understand client-side mechanism which is essential for finding client-side flaws.

PHP:

A dynamic server-side language which is responsible for managing web-apps and database. PHP is considered one of the most essential language because it controls everything on site and server, like a captain of a ship. It is advised to learn PHP nicely.

SQL:

SQL is responsible for storing and managing sensitive and confidential data such as user credentials, bank and personal information about the website visitors. Black hat hackers mostly target SQL database and steal information which is later sold on underground dark web forum. If you want to be good security researcher, you should learn SQL so that you can find flaws in a website and report them.

2. Exploit Writing

After web hacking, another most important feature of hacking is exploits. You can crack a particular software by writing a exploit. But to write a exploit you need to learn either Python or Ruby.

Python:

It is said that a security researcher or hacker should know Python because it the core language for creating exploits and tools. Security experts and even pro hackers suggest that master Python is the best way to learn hacking. Python offers wider flexibility and you can create exploits only if you are good in Python.

Ruby:

Ruby is a simple yet complicated object-oriented language. Ruby is very useful when it comes to exploit writing. It is used for meterpreter scripting by hackers. The most famous hacker tool, Metasploit framework is programmed in Ruby. Though Ruby may not be as versatile as Python, knowledge of Ruby is must in understanding exploits.

3. Reverse Engineering

Reverse engineering, the process of taking a software program’s binary code and recreating it so as to trace it back to the original source code. If you know reverse engineering you can find flaws and bugs easily. If you want to learn reverse engineering you need to know C, C++ and Java. The process of converting the code written in high level language into a low level language without changing the original program is known as reverse engineering.

Do you think any other programming language is essential for wannabe hackers and security researchers? if yes then please comment below.


Reference

Saturday, May 28, 2016

USE FULL ABBREVIATIONS


1)GOOGLE: global organization of oriented group language of earth.. 
2)YAHOO: yet another hierarchical officious oracle..
3)WINDOW: Wide interactive network development for office work solution
4)COMPUTER: Communication oriented machine purposely utilized technical educational research a scholarly article.
5)VIRUS: virtually infected reputed utilized software
6)UMTS: universal mobile telecommunication system
7)AMOLED: active matrix organic emitting diode. 
8)OLED: organic light emitting diode.
9)IMEI: international mobile equipment identity. 
10)ESN: electronic serial number. 
11)UPS: uninterruptiblepower supply. 
12)HDMI: high definition multimedia interface. 
13)VPN: virtual private network. 
14)APN: access point name. 
15)SIM: subscriber identity module. 
16)LED: light emitting diode.
17)DLNA: digital line network access. 
18)RAM: random access memory. 
19)ROM: read only memory. 
20)VGA: video graphic array. 
21)QVGA: quarter video graphic array. 
22)WVGA: wide video graphic array. 
23)WXGA: wide extended graphic array. 
24)USB: universal service bus. 
25)WLAN: wireless local area network. 
26)PPI: pixel per inch. 
27)LCD: liquid crystal display. 
28)HSDPA: high speed downlink packet access. 
29)HSUPA: high speed upload packet access. 
30)HSPA: high speed packet access. 
31)GPRS: general packet radio service 
32)EDGE: enhancement data rate for global evolution. 
33)NFC: near field communication. 
34)OTG: on-the-go 
35)S-LCD: super clear liquid display.
36)O.S: operating system. 
37)SNS: social networking sites 
38)H.S: HOTSPOT 
39)P.O.I: point of interest 
40)GPS: global position system 
41)DVD: digital video disc 
42)DTP: desk top publishing. 
43)DNSE: digital natural sound engine. 
44)OVI: Ohio video intranet. 
45)CDMA: code division multiple access. 
46)WCDMA: wide-band code division multiple access. 
47)GSM: global system for mobile communication.
48)WI-FI: wireless fidelity 
49)DIVX: digital internet video access. 
50)APK: authenticated public key. 
51)J2ME: java 2 micro edition 
52)SIS: symbian installation source. 
53)DELL: digital electronic link library. 
54)ACER: acquisition collaboration experimentation reflection. 
55)RSS: really simple syndication 
56)TFT: thin film transistor 
57)AMR: adaptive multi rate 
58)MPEG: moving pictures experts group 
59)IVRS: interactive voice response system.
60)HP: Hewlett-Packard

Thursday, May 19, 2016

Retrieving data from SQL Server using RecordSet object in VBScript

Option Explicit

Dim Conn ' Connection Variable
Dim rs ' Recordset Variable
Dim sqlQuery
Dim serverName
Dim field


'Declare the SQL statement that will query the database
sqlQuery = "SELECT UserName FROM dbo.UserList WHERE ID = '9'"


'Create an instance of the ADO connection and recordset objects

Set Conn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")


'Open the connection to the database
Conn.Open "DSN=getUser;UID=user1;PWD=password;Database=dbUserList"


'Open the recordset object executing the SQL statement and return records 
rs.Open sqlQuery,Conn


'Check if any record exist in table 
If rs.EOF Then 
wscript.echo "No Record Found"
wscript.quite
Else 

Do While NOT rs.Eof   
field = rs("UserName")
if field <> "" then
  wscript.echo field
end if
rs.MoveNext     
Loop

End If


'Close Connection and Recordset
rs.Close
Set rs=nothing
Conn.Close
Set Conn=nothing