SlideShare a Scribd company logo
 
TOP 10 WEB APPLICATION SECURITY
HAZARDS
{ PART - 2 }
@  
by Abhinav Sejpal
Null - Humla Session
FLIPKART - BANGALORE
 
      WHO AM I
I' m Next-Gen Exploratory Testy 
Student of Information Security field
Researcher & Reader in free time
Member of
Crowd Tester (AKA. Bug bounty Hunter)  
Proficient at Functional, Usability , Accessibility & Compatibility Testing
Love to develop nasty code  & Hack it :)
Works as Quality Analyst at
AKA. Bug Wrangler
Null Open Security Co mmunity
passbrains.com
DISCLAIMER
This presentation is intended for educational purpose only and I cannot be held liable for
any kind of damages done, whatsoever to your machine, or any other damages.  
Don't try this attack on any other system without having context knowledge or permission,
this may harm someone directly or indirectly.
Feel free to use this presentation for practice or education purpose.
^ I hope - You gotcha ^
AGENDA
No Revision of Part - 1
Understand New Attacks
Self exploratory exercise
Learn + Hack   
Q  &  A
   FOR SOCIAL MEDIA
Twitter handle 
 @  @null0x00 Abhinav_Sejpal
Hashtag for this session
     # #Nullhumla nullblr
HUMLA
MEANS 'ATTACK' IN HINDI
                        
 
   
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
OBJECTIVES FOR THIS SESSION
BUILD SECURITY AWARENESS FOR WEB
APPLICATION
LEARN WAY TO DISCOVER SECURITY
VULNERABILITIES
LEARN BASIC OF SECURE WEB APPLICATION VIA
OWASP TOP 10
LET'S BEGIN OUR JOURNEY
OF 
TOP 10 WEB APPLICATION SECURITY
HAZARDS
 * We won't talk about Injection & XSS *
for:
Setup the Test Lab
Install XAMPP
Acronym
X (to be read as "cross", meaning )cross-platform
Apache HTTP Server
MySQL
PHP
Perl
TARGETED APPLICATION
Client Side language : HTML & Javascript
Server side Language: PHP
DB : MYSQL 
Why PHP ?  - Any answer Here?
Why MySQL?  MySQL is  Girlfriend of PHP <3 
PHP IS USED BY 82.2% OF ALL THE WEBSITES AS SERVER-SIDE
PROGRAMMING LANGUAGE.
http://w3techs.com/technologies/overview/programming_lang
PHP: 244M SITES
2.1M IP ADDRESSES
2013 Server-side Programming Language of the Year
Don't Mind Power of PHP > Facebook & yahoo 
http://w3techs.com/blog/entry/web_technologies_of_the_year
It's a free, open source web application provided to allow
security enthusiast to pen-test and hack a web application.
V.2X developed by  aka
PLAY GROUND
 MUTILLIDAE
Jeremy Druin webpwnized.
ALL SET WITH MULTILLIDAE ?
AM I VULNERABLE TO 'CSRF' ?
OWASP A8 - CSRF
CROSS-SITE REQUEST FORGERY
CSRF ATTACK CYCLE
CSRF AKA. XSRF
  THE ATTACKER EXPLOITS THE TRUST A WEBSITE
HAS AGAINST A USER’S BROWSER.
 Permission fakingstealing
 Disruption of the normal sequence of the site
DEMO #1
Login ID - admin
password - adminpass
HTTP GET Request
http://127.0.0.1/xampp/mutillidae/index.php?do=logout
<a href=
>
: ANSWER  DEMO 1:
<html>
<title> CSRF Demo 1 </title>
http://127.0.0.1/xampp/mutillidae/index.php?
do=logout
Click me </a>
</html>
UNDERSTANDING
Logout page was a simple HTTP GET that required no
confirmation
Every user who visited that page would immediately be
logged out - that's CSRF in action.
Yes it's not dangerous but annoying
Owasp top 10 web application security hazards part 2
SO WHAT DO YOU THINK,
IT'S ALL ABOUT CLICK ?
ssh, No!!
Would you like to write CSRF exploit without click ??
IMAGE TAG
<img style="display:none;" src="your Request">
  Image tag does not require clicking the link compared Tag-
A requires clicking on the link to activate the HTTP request
Can we try Demo 1 with Image tag ?
Owasp top 10 web application security hazards part 2
<img src=
>
CSRF GET Request with Image Tag
<html>
<title> CSRF Demo 1 </title>
http://127.0.0.1/xampp/mutillidae/index.php?
do=logout
</html>
THE NATURE OF BROWSERS IS TO SEND HTTP REQUESTS TO VISUAL OBJECTS SUCH AS PICTURE OR REMOTE FILES (CSS, JS,
ETC.) EVEN WHILE LOADING THE PAGE WITHOUT THE USER'S PERMISSIONS.
Iframe tag
<iframe src="your Request"></iframe>
Java Script code
                 <script> var X= new Image();            
                                   X.src = "URL";
                </script>
                        Can we try Demo 1 with Iframe & JS ?
HTTP REQUEST
<iframe src="
http://127.0.0.1/xampp/mutillidae/index.php?
do=logout"></iframe>
           <script> var X= new Image();            
                                   X.src= "
http://127.0.0.1/xampp/mutillidae/index.php?do=logout
";                
</script>
CHALLENGE  #1
:: SOLUTION #1 ::
<html>
<title> CSRF Demo 1 </title>
<a href = http://127.0.0.1/xampp/mutillidae/index.php?
page=user-poll.php&csrf-
token=&choice=nmap&initials=n&user-poll-php-submit-
button=Submit+Vote>
Click me </a>
</html>
CHALLENGE  #2
{ Post HTTP Request }
: Solution Available :
http://127.0.0.1/xampp/CSRF Attack/Add New Blog Entry -
CSRF POST.html
DOES IT EASY TO CREATE CSRF HTTP REQUEST ?
No - you should try out  
~   ~CSRF Finder Firefox add-on
* One Click POC *
* Hybrid automation *
Thank you -  Piyush Pattanayak
CSRF FINDER DEMO
LIVE CHALLENGE
* SIGNUP DISABLED *
PLEASE USE THE USERNAME TEST AND THE
PASSWORD TEST
CSRF & XSRF
Update the user info. without their knowledge
http://testphp.vulnweb.com/userinfo.php
Copyright © 2014, Acunetix Ltd
Owasp top 10 web application security hazards part 2
You've been CSRF'd with static token! 
Can we exploit this with Level #2 ?
Owasp top 10 web application security hazards part 2
POPULAR COOL FINDINGS
by AmolFacebook CSRF worth USD 5000
GOOGLE GROUPS PROFILE CSRF
Google Account display pic deletion
Facebook Account deactivation
Advance Leanings -  CSRF Token Validation Fail
http://haiderm.com/csrf-token-protection-bypass-methods/
 
Am I Vulnerable To 'Broken Authentication   &
Session Management'?
A2 - OWASP TOP 10
Owasp top 10 web application security hazards part 2
LETS' BYPASS THE MUTILLIDAE 
Can we do it  ?
Part -1 Learning with SQL Injection
APPLY BRUTE FORCE ATTACK
/xampp/mutillidae/index.php?page=login.php
Account Lock Policy & Captcha missing :P
Owasp top 10 web application security hazards part 2
IN-SECURED SESSION-ID
Cookies Flag HTTP ONLY 
Secure flag would be complimentary
XSS SESSION HIJACKING 
PHPSESSID=0ebmp37g8v8stqsjpf1ln40c20
JSESSIONID
ASP Session.SessionID
Let's Try out Part 1 learning and exploit   the session
So, Let's Learn about Web App DB structure
Passwords are stored in plain text.
oh really  -- ':(
OWASP #A6
Password is protected, when stored using encryption
algorithm.   Are you sure? 
http://www.md5online.org/
YOU MAY ALSO TRY OUT HASH BUT PASSWORD SALT IS A
RECOMMENDED SOLUTION SO FAR.
P ASSWORD POLICY SHOULD BE APPLIED NICELY AND SHOULD NOT BE WEAKER.
-- * --
SECURITY & BUSINESS LOGIC SHOULD BE APPLIED FOR CHANGING PASSWORD. 
CHANGE PASSWORD DOESN'T ASK FOR CURRENT PASSWORD - LOL 
Owasp top 10 web application security hazards part 2
Robots.txt 
All Sensitive data expose
TAKE AWAY 
AVOIDING INSECURE DIRECT OBJECT REFERENCES
OWASP #A4  
 URLS' PATTERN
Owasp top 10 web application security hazards part 2
Demo  #1
Tamper the ID parameter
http://127.0.0.1/xampp/sqli/secondorder_changepass.php
ENUMERATION USING PARAMETER
LIVE
https://profile.utest.com/ 67797
https://profile.utest.com/200 -- N
https://99tests.com/testers/ 3298
Secret PHP Server Configuration Page
http://127.0.0.1/xampp/mutillidae/index.php?
page=phpinfo.php
Owasp top 10 web application security hazards part 2
MISSING FUNCTION LEVEL ACCESS CONTROL
OWASP #A7
CONCEPT
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
LIVE
HTTP://STEPINFORUM.ORG/MAILERS2014/
http://demo.testfire.net/pr/
OWASP #A9
USING KNOWN VULNERABLE
COMPONENTS
Source: https://www.aspectsecurity.com/uploads/downloads/2012/03/Aspect-Security-The-Unfortunate-Reality-of-Insecure-
Libraries.pdf
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
COOL WORDPRESS PROJECTS
Code Vigilant
Latest buzzing known vulnerabilities
#Heartbleed
# BashBug
Can you verify that -  your website SSL  Cert isn't vulnerable
to Heart bleed attack?
Google - SSL Heart bleed Fix verification script
https://lastpass.com/heartbleed/
HISTORY ATTACK !!!
A6 – Sensitive Data Exposure
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
SECURITY
MISCONFIGURATION
OWASP -#A5
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
Owasp top 10 web application security hazards part 2
CLICK JACKING
Code: – <iframe src= http://www.testingcircus.com>
</iframe>
Live Demo: – http://goo.gl/6gEq2I
Click jacking Testing tool: – http://goo.gl/27VgQb
     IF YOU ARE PLANNING TO HOST YOUR OWN
SERVER 
this talk matters for you 
"SECURING A LINUX WEB SERVER IN 10 STEP S"
BY   A KASH MAHAJAN 
https://www.youtube.com/watch?v=ort9qxzu3h0
Owasp top 10 web application security hazards part 2
ELMAH.AXD ERROR LOGS
 GOOGLE SEARCH
https://www.owasp.org/index.php/Top_10_2013- A10-
Unvalidated_Redirects_and_Forwards
Owasp top 10 web application security hazards part 2
Vulnerable  Redirection
http://127.0.0.1/xampp/mutillidae/index.php?
page=redirectandlog.php&
forwardurl=http://www.owasp.org
I don't think so, i need to explain you what you can do here
:D
Owasp top 10 web application security hazards part 2
Would like to do more practice ? Here is your Playground
Copyright © 2014, IBM Corporation
http://demo.testfire.net/
YES - I'M DONE!
Feel free to write me at bug.wrangler at outlook.com
WE NEED YOU!
Attend Null Meets-up & give presentations.
Share your ideas & leanings.
Talk to our community champions & gain from leanings.
Your feedback helps us to build a good community.
Looking forward to your ongoing support.
HTTP://NULL.CO.IN/
Say 'Hello' @null0x00
- Twitter Folks -
 
@ , @ ,   @
 #Nullblr Leads & Champions
Big thank you to @ ,@   & you All.
CREDITS
TroyHunt yog3sharma @ Lavakumark HaiderMQ
null0x00 ru94mb
INDIAN HACKERS/INFOSEC GUYS & GROUPS YOU
SHOULD BE FOLLOWING IN TWITTER
Thank-you http://garage4hackers.com/ community
THANK YOU! 
KEEP THE SECURITY ANTE UP.
https://slides.com/abhinavsejpal/top-10-web-application-
security-hazards--2
LICENSE AND COPYRIGHTS
Copyrights 2013-2014 Abhinav Sejpal
-----
  ( CC BY-NC-ND 3.0)
Attribution-NonCommercial-NoDerivs 3.0 Unported
 Dedicated to my lovely daddy

More Related Content

What's hot (20)

PPT
Developing Secure Applications and Defending Against Common Attacks
PayPalX Developer Network
 
PPTX
3. backup file artifacts - mazin ahmed
Rashid Khatmey
 
PPT
香港六合彩
baoyin
 
PDF
HackFest 2015 - Rasp vs waf
IMMUNIO
 
PDF
Web Application Security with PHP
jikbal
 
PDF
OWASP API Security Top 10 Examples
42Crunch
 
PPTX
Web application security
Kapil Sharma
 
PDF
Pentesting Rest API's by :- Gaurang Bhatnagar
OWASP Delhi
 
PPTX
Web application security: Threats & Countermeasures
Aung Thu Rha Hein
 
PPTX
2 . web app s canners
Rashid Khatmey
 
PPTX
A7 Missing Function Level Access Control
stevil1224
 
PDF
Beyond OWASP Top 10 - Hack In Paris 2017
Aaron Hnatiw
 
PPTX
Web Hacking Intro
Aditya Kamat
 
PPTX
Abusing Exploiting and Pwning with Firefox Addons
Ajin Abraham
 
PDF
Beyond OWASP Top 10 - TASK October 2017
Aaron Hnatiw
 
PDF
Web Application Firewall: Suckseed or Succeed
Prathan Phongthiproek
 
PDF
Garage4Hackers Ranchoddas Webcast Series - Bypassing Modern WAF's Exemplified...
Garage4hackers.com
 
PPTX
.NET Security Topics
Shawn Gorrell
 
PPTX
Secure Programming In Php
Akash Mahajan
 
Developing Secure Applications and Defending Against Common Attacks
PayPalX Developer Network
 
3. backup file artifacts - mazin ahmed
Rashid Khatmey
 
香港六合彩
baoyin
 
HackFest 2015 - Rasp vs waf
IMMUNIO
 
Web Application Security with PHP
jikbal
 
OWASP API Security Top 10 Examples
42Crunch
 
Web application security
Kapil Sharma
 
Pentesting Rest API's by :- Gaurang Bhatnagar
OWASP Delhi
 
Web application security: Threats & Countermeasures
Aung Thu Rha Hein
 
2 . web app s canners
Rashid Khatmey
 
A7 Missing Function Level Access Control
stevil1224
 
Beyond OWASP Top 10 - Hack In Paris 2017
Aaron Hnatiw
 
Web Hacking Intro
Aditya Kamat
 
Abusing Exploiting and Pwning with Firefox Addons
Ajin Abraham
 
Beyond OWASP Top 10 - TASK October 2017
Aaron Hnatiw
 
Web Application Firewall: Suckseed or Succeed
Prathan Phongthiproek
 
Garage4Hackers Ranchoddas Webcast Series - Bypassing Modern WAF's Exemplified...
Garage4hackers.com
 
.NET Security Topics
Shawn Gorrell
 
Secure Programming In Php
Akash Mahajan
 

Viewers also liked (8)

PDF
Krityanand UNESCO Club’s Internship Program for XLRI Jamshedpur on Post-2015 ...
KRITYANAND UNESCO CLUB Jamshedpur
 
PDF
Tfs branching guide_main_2010_v1
Timo Kuisma
 
PPSX
STARS Employee Rewards & Recognition Overview
Concept Rewards & Recogniton, LLC
 
PPTX
My space_Final
Anthony Politi
 
PPTX
Wat KMO's fout doen op sociale media
simongryspeert
 
PPTX
Skaidres euroscolai
Audra Steponavičiūtė
 
PDF
Vibe ing for de s-form
Jun Hu
 
PDF
Dice02 summer school visual analytics
Jun Hu
 
Krityanand UNESCO Club’s Internship Program for XLRI Jamshedpur on Post-2015 ...
KRITYANAND UNESCO CLUB Jamshedpur
 
Tfs branching guide_main_2010_v1
Timo Kuisma
 
STARS Employee Rewards & Recognition Overview
Concept Rewards & Recogniton, LLC
 
My space_Final
Anthony Politi
 
Wat KMO's fout doen op sociale media
simongryspeert
 
Skaidres euroscolai
Audra Steponavičiūtė
 
Vibe ing for de s-form
Jun Hu
 
Dice02 summer school visual analytics
Jun Hu
 
Ad

Similar to Owasp top 10 web application security hazards part 2 (20)

PDF
Oh no, was that CSRF #Ouch
Abhinav Sejpal
 
PDF
Android mobile app security offensive security workshop
Abhinav Sejpal
 
PPT
[Php Camp]Owasp Php Top5+Csrf
Bipin Upadhyay
 
PDF
Null bhopal Sep 2016: What it Takes to Secure a Web Application
Anant Shrivastava
 
PPTX
Secure programming with php
Mohmad Feroz
 
PPT
PHP Security
Mindfire Solutions
 
PDF
OSCP Preparation Guide @ Infosectrain
InfosecTrain
 
PDF
Input validation slides of web application workshop
Payampardaz
 
PDF
Cyber Security Workshop @SPIT- 3rd October 2015
Nilesh Sapariya
 
PDF
What You Need to Know About Web App Security Testing in 2018
Ken DeSouza
 
PDF
The Enterprise Wor/d/thy/Press
Jeroen van Dijk
 
PDF
Your WordPress Website Is/Not Hacked
Angela Bowman
 
PPTX
CONFidence 2015: The Top 10 Web Hacks of 2014 - Matt Johansen, Johnathan Kuskos
PROIDEA
 
PDF
Session10-PHP Misconfiguration
zakieh alizadeh
 
PPTX
SSRF For Bug Bounties
OWASP Nagpur
 
PDF
Deep Exploit@Black Hat Europe 2018 Arsenal
Isao Takaesu
 
PDF
Applications secure by default
Slawomir Jasek
 
PDF
Applications secure by default
SecuRing
 
PPTX
Javascript Security - Three main methods of defending your MEAN stack
Ran Bar-Zik
 
PPTX
Bug Bounty 101
Shahee Mirza
 
Oh no, was that CSRF #Ouch
Abhinav Sejpal
 
Android mobile app security offensive security workshop
Abhinav Sejpal
 
[Php Camp]Owasp Php Top5+Csrf
Bipin Upadhyay
 
Null bhopal Sep 2016: What it Takes to Secure a Web Application
Anant Shrivastava
 
Secure programming with php
Mohmad Feroz
 
PHP Security
Mindfire Solutions
 
OSCP Preparation Guide @ Infosectrain
InfosecTrain
 
Input validation slides of web application workshop
Payampardaz
 
Cyber Security Workshop @SPIT- 3rd October 2015
Nilesh Sapariya
 
What You Need to Know About Web App Security Testing in 2018
Ken DeSouza
 
The Enterprise Wor/d/thy/Press
Jeroen van Dijk
 
Your WordPress Website Is/Not Hacked
Angela Bowman
 
CONFidence 2015: The Top 10 Web Hacks of 2014 - Matt Johansen, Johnathan Kuskos
PROIDEA
 
Session10-PHP Misconfiguration
zakieh alizadeh
 
SSRF For Bug Bounties
OWASP Nagpur
 
Deep Exploit@Black Hat Europe 2018 Arsenal
Isao Takaesu
 
Applications secure by default
Slawomir Jasek
 
Applications secure by default
SecuRing
 
Javascript Security - Three main methods of defending your MEAN stack
Ran Bar-Zik
 
Bug Bounty 101
Shahee Mirza
 
Ad

Recently uploaded (20)

PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PDF
Novus-Safe Pro: Brochure-What is Novus Safe Pro?.pdf
Novus Hi-Tech
 
PDF
Empowering Cloud Providers with Apache CloudStack and Stackbill
ShapeBlue
 
PDF
Upskill to Agentic Automation 2025 - Kickoff Meeting
DianaGray10
 
PDF
Apache CloudStack 201: Let's Design & Build an IaaS Cloud
ShapeBlue
 
PPTX
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
PDF
Meetup Kickoff & Welcome - Rohit Yadav, CSIUG Chairman
ShapeBlue
 
PDF
Wojciech Ciemski for Top Cyber News MAGAZINE. June 2025
Dr. Ludmila Morozova-Buss
 
PDF
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
PDF
Arcee AI - building and working with small language models (06/25)
Julien SIMON
 
PDF
Smart Air Quality Monitoring with Serrax AQM190 LITE
SERRAX TECHNOLOGIES LLP
 
PPTX
Building and Operating a Private Cloud with CloudStack and LINBIT CloudStack ...
ShapeBlue
 
PDF
Shuen Mei Parth Sharma Boost Productivity, Innovation and Efficiency wit...
AWS Chicago
 
PDF
HR agent at Mediq: Lessons learned on Agent Builder & Maestro by Tacstone Tec...
UiPathCommunity
 
PPT
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
PDF
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
PPTX
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
PDF
Productivity Management Software | Workstatus
Lovely Baghel
 
PDF
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
PDF
Are there government-backed agri-software initiatives in Limerick.pdf
giselawagner2
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
Novus-Safe Pro: Brochure-What is Novus Safe Pro?.pdf
Novus Hi-Tech
 
Empowering Cloud Providers with Apache CloudStack and Stackbill
ShapeBlue
 
Upskill to Agentic Automation 2025 - Kickoff Meeting
DianaGray10
 
Apache CloudStack 201: Let's Design & Build an IaaS Cloud
ShapeBlue
 
Building a Production-Ready Barts Health Secure Data Environment Tooling, Acc...
Barts Health
 
Meetup Kickoff & Welcome - Rohit Yadav, CSIUG Chairman
ShapeBlue
 
Wojciech Ciemski for Top Cyber News MAGAZINE. June 2025
Dr. Ludmila Morozova-Buss
 
NewMind AI Journal - Weekly Chronicles - July'25 Week II
NewMind AI
 
Arcee AI - building and working with small language models (06/25)
Julien SIMON
 
Smart Air Quality Monitoring with Serrax AQM190 LITE
SERRAX TECHNOLOGIES LLP
 
Building and Operating a Private Cloud with CloudStack and LINBIT CloudStack ...
ShapeBlue
 
Shuen Mei Parth Sharma Boost Productivity, Innovation and Efficiency wit...
AWS Chicago
 
HR agent at Mediq: Lessons learned on Agent Builder & Maestro by Tacstone Tec...
UiPathCommunity
 
Interview paper part 3, It is based on Interview Prep
SoumyadeepGhosh39
 
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
✨Unleashing Collaboration: Salesforce Channels & Community Power in Patna!✨
SanjeetMishra29
 
Productivity Management Software | Workstatus
Lovely Baghel
 
DevBcn - Building 10x Organizations Using Modern Productivity Metrics
Justin Reock
 
Are there government-backed agri-software initiatives in Limerick.pdf
giselawagner2
 

Owasp top 10 web application security hazards part 2