SlideShare a Scribd company logo
1 of 22
JSON Fuzzing: New
           approach to old problems

- Tamaghna Basu            - K.V.Prashant
tamaghna.basu@gmail.com    good.best.guy@gmail.com



http://null.co.in/                      http://nullcon.net/
Who are we?
        We are still discovering ourselves
        • Kaun hu main…
        • kahan hu main….
        • Main yahan kaise aya…
        • Purpose of my life…

      Till then,
      K.V.Prashant :- CEH, CISSP Security
           consultant/researcher. An avid null
           community member.


    Tamaghna Basu :- GCIH, CEH, ECSA, RHCE,
       Diploma in Cyber Law. Once coder, now
       researcher. A net addict citizen of India.




http://null.co.in/                                  http://nullcon.net/
What are you going to
           tolerate in next 30 mins or so…
      • Lazy bums we are.
      • Wanted an easy tool to
        test apps with JSON
        support. Unable to find
        one.
      • Laziness inside us
        prompted us to use an
        existing to and add JSON
        functionality instead
        building it from scratch.



http://null.co.in/                      http://nullcon.net/
Disclaimer
      We are not responsible for any mental, financial and
       physical health issues arising after viewing this
       presentation.

      We are not responsible for any damage to conference
       venue arising due our conference speech


                             So be seated at your own risk 


http://null.co.in/                                     http://nullcon.net/
Why are we here?
                              Because of him…
                              • American computer
                                programmer and
                                entrepreneur

                              • More popular for his
                                involvement and creation of
                                JSON format

                                           (Ref: Wikipedia)
          Doglas Croockford


http://null.co.in/                                   http://nullcon.net/
JSON:- What is that ?
      JSON (an acronym for JavaScript Object Notation) is a
         lightweight text-based open standard designed for human-
         readable data interchange. It is derived from the JavaScript
         programming language for representing simple data
         structures and associative arrays, called objects. Despite its
         relationship to JavaScript, it is language-independent, with
         parsers available for most programming languages.
      The JSON format was originally specified by Douglas Crockford,
         and is described in RFC 4627. The official Internet media type
         for JSON is application/json. The JSON filename extension is
         .json
      Blah… Blah… Blah…
                            SEE Wikipedia…
http://null.co.in/                                              http://nullcon.net/
JSON:- What is that ?
      In simple language
       It's a method to exchange data in a simple structured
         format between web-client and server.
       Mostly used with AJAX request/response scenarios.
       Lightweight, lesser tags and easy to parse- less
         computational intensive than XML
       Extensively used in applications developed by
         companies like Google, Yahoo, Amazon etc.



http://null.co.in/                                     http://nullcon.net/
JSON: Client Side processing
             var abc ='{"loginId":"'+ document.test.name.value +'","pwd":"'+
                document.test.password.value +'"}';
             var req = null;
             if (window.XMLHttpRequest) {
               req = new XMLHttpRequest();
             } else if (window.ActiveXObject) {
             try {
                   req = new ActiveXObject("Msxml2.XMLHTTP");
                 } catch (e) {
                               try {
                                      req = new ActiveXObject("Microsoft.XMLHTTP");
                                    } catch (e) {}
                             }
                   }
                   req.onreadystatechange = function() {
                                if(req.readyState == 4) {
                            if(req.status == 200) {
                               var employee=eval(+req.responseText+);
                                   document.write(employee.name);
                                      document.write(employee.age);
                          }else {
                            document.getElementById("realtooltip2").innerHTML="Error: returned status code " + req.status + " " + req.statusText;
                          }
                    }
                 };
                 req.open("POST", "http://in-prashantkv.in.kworld.kpmg.com:8080/servlets/Search", true);
                 req.send(abc);




http://null.co.in/                                                                                                                        http://nullcon.net/
JSON: Message Format
      Request sent to server :
      {
        “LoginId”:”name”
        “pwd":"secret”
      }

      Response received from server after authentication and
          processing:
      {
        “name”:”Prashant”
        “age":"secret”
      }

http://null.co.in/                                             http://nullcon.net/
JSON: Server Side processing
      Using org.json libraries we can parse JSON object in below way:

      public class HelloWorld extends HttpServlet{
      public void doPost(HttpServletRequest request, HttpServletResponse response)
                          throws ServletException, IOException{
      {
      StringBuffer jb = new StringBuffer();
      String line = null;
      BufferedReader reader = request.getReader();

      while ((line = reader.readLine()) != null)
      jb.append(line);

      JSONObject jsonObject = new JSONObject(jb.toString());

      String pwd = jsonObject.getString("pwd");
      String uname = jsonObject.getString("loginId");
      …..



http://null.co.in/                                                                   http://nullcon.net/
JSON: Server Side processing
      Using org.json libraries we can create JSON object in below method:

      public class HelloJSON
      {
        public static void main(String args[]){
        JSONObject jobject=new JSONObject();

          jobject.put("name","prashant");
          jobject.put("Age",new Integer(25));

           .........
          }
      }




http://null.co.in/                                                          http://nullcon.net/
JSON Fuzzing: What's missing
       Almost everything 
       Current tools support only name/value pair
        format of data e.g.
        login=test&passwd=test123&seclogin=on
       But not JSON format like:
        {"loginId":"test@ttt.com","pwd":"12345"}
       Tiresome to edit each field each field in http
        proxies like paros


http://null.co.in/                                http://nullcon.net/
JSON Fuzzing: What's missing




    login=test&passwd=test
    123&seclogin=on&Form
    Name=existing



http://null.co.in/                         http://nullcon.net/
JSON Fuzzing: What's missing




http://null.co.in/                         http://nullcon.net/
JSON Fuzzing: What's missing




http://null.co.in/                         http://nullcon.net/
JSON Fuzzing: What's missing




http://null.co.in/                       http://nullcon.net/
JSON Fuzzing: What we did
       Took a popular Firefox addon
       Added conversion module to convert JSON to
        name/value pair
       Added fuzzing capabilities on converted name
        value/pair
       Convert back fuzzed values to JSON object and
        complete the request
        (current contribution still under review)

http://null.co.in/                               http://nullcon.net/
JSON Fuzzing: Demo



                            Demo




http://null.co.in/                        http://nullcon.net/
JSON Fuzzing: Road Ahead
      Support for various JSON format :
       Simple object - {"loginId":"test@ttt.com","pwd":"12345"}

       Nested object –
        { "name": "Jack ("Bee") Nimble",
          "format": { "type": "rect", "width": 1920}
        }

       Array –
        ["Sunday", "Monday", "Tuesday", "Wednesday",
        "Thursday", "Friday", "Saturday"]


http://null.co.in/                                                 http://nullcon.net/
JSON Fuzzing: Road Ahead
       Present code changes to Tamper data
        submitted to original writer
       Adding JSON fuzzing capabilities to other tools
        like Webscarab
       Release a JSON application with common
        vulnerabilities




http://null.co.in/                               http://nullcon.net/
JSON Fuzzing: References
       JSON reference site www.json.org
       JSON Ajax tutorials
        http://www.ibm.com/developerworks/web/li
        brary/wa-ajaxintro11.html
       Tamper data page
        https://addons.mozilla.org/en-
        us/firefox/addon/tamper-data/


http://null.co.in/                              http://nullcon.net/
JSON Fuzzing: Road Ahead
                      If you are still there/awake then

                                Dhanyawad

                     Special Thanks to null community
  Tamaghna Basu
  - tamaghna.basu@gmail.com                   K.V.Prashant
  - tamahawk-                                 -good.best.guy@gmail.com
  techguru.blogspot.com
  - twitter.comtitanlambda


http://null.co.in/                                           http://nullcon.net/

More Related Content

What's hot

<img src="../i/r_14.png" />
<img src="../i/r_14.png" /><img src="../i/r_14.png" />
<img src="../i/r_14.png" />
tutorialsruby
 
Json-based Service Oriented Architecture for the web
Json-based Service Oriented Architecture for the webJson-based Service Oriented Architecture for the web
Json-based Service Oriented Architecture for the web
kriszyp
 
External Data Access with jQuery
External Data Access with jQueryExternal Data Access with jQuery
External Data Access with jQuery
Doncho Minkov
 

What's hot (20)

<img src="../i/r_14.png" />
<img src="../i/r_14.png" /><img src="../i/r_14.png" />
<img src="../i/r_14.png" />
 
Source Code Analysis with SAST
Source Code Analysis with SASTSource Code Analysis with SAST
Source Code Analysis with SAST
 
Getting started with MongoDB and Scala - Open Source Bridge 2012
Getting started with MongoDB and Scala - Open Source Bridge 2012Getting started with MongoDB and Scala - Open Source Bridge 2012
Getting started with MongoDB and Scala - Open Source Bridge 2012
 
Advanced Topics On Sql Injection Protection
Advanced Topics On Sql Injection ProtectionAdvanced Topics On Sql Injection Protection
Advanced Topics On Sql Injection Protection
 
DEfcon15 XXE XXS
DEfcon15 XXE XXSDEfcon15 XXE XXS
DEfcon15 XXE XXS
 
XPATH, LDAP and Path Traversal Injection
XPATH, LDAP and Path Traversal InjectionXPATH, LDAP and Path Traversal Injection
XPATH, LDAP and Path Traversal Injection
 
Wt unit 6 ppts web services
Wt unit 6 ppts web servicesWt unit 6 ppts web services
Wt unit 6 ppts web services
 
Pentesting RESTful webservices
Pentesting RESTful webservicesPentesting RESTful webservices
Pentesting RESTful webservices
 
Dom XSS - Encounters of the 3rd Kind (Bishan Singh Kochher)
Dom XSS - Encounters of the 3rd Kind (Bishan Singh Kochher)Dom XSS - Encounters of the 3rd Kind (Bishan Singh Kochher)
Dom XSS - Encounters of the 3rd Kind (Bishan Singh Kochher)
 
Attacking REST API
Attacking REST APIAttacking REST API
Attacking REST API
 
PHP And Web Services: Perfect Partners
PHP And Web Services: Perfect PartnersPHP And Web Services: Perfect Partners
PHP And Web Services: Perfect Partners
 
Json-based Service Oriented Architecture for the web
Json-based Service Oriented Architecture for the webJson-based Service Oriented Architecture for the web
Json-based Service Oriented Architecture for the web
 
The never-ending REST API design debate
The never-ending REST API design debateThe never-ending REST API design debate
The never-ending REST API design debate
 
External Data Access with jQuery
External Data Access with jQueryExternal Data Access with jQuery
External Data Access with jQuery
 
Lie to Me: Bypassing Modern Web Application Firewalls
Lie to Me: Bypassing Modern Web Application FirewallsLie to Me: Bypassing Modern Web Application Firewalls
Lie to Me: Bypassing Modern Web Application Firewalls
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technologyWt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
 
Entity provider selection confusion attacks in JAX-RS applications
Entity provider selection confusion attacks in JAX-RS applicationsEntity provider selection confusion attacks in JAX-RS applications
Entity provider selection confusion attacks in JAX-RS applications
 
Laravel Security Standards
Laravel Security Standards Laravel Security Standards
Laravel Security Standards
 
Play Your API with MuleSoft API Notebook
Play Your API with MuleSoft API NotebookPlay Your API with MuleSoft API Notebook
Play Your API with MuleSoft API Notebook
 
Building Secure User Interfaces With JWTs (JSON Web Tokens)
Building Secure User Interfaces With JWTs (JSON Web Tokens)Building Secure User Interfaces With JWTs (JSON Web Tokens)
Building Secure User Interfaces With JWTs (JSON Web Tokens)
 

Similar to JSON Fuzzing: New approach to old problems

JavaScript Lessons 2023 V2
JavaScript Lessons 2023 V2JavaScript Lessons 2023 V2
JavaScript Lessons 2023 V2
Laurence Svekis ✔
 
WebSocket JSON Hackday
WebSocket JSON HackdayWebSocket JSON Hackday
WebSocket JSON Hackday
Somay Nakhal
 
CouchDB on Android
CouchDB on AndroidCouchDB on Android
CouchDB on Android
Sven Haiges
 
Why Node.js
Why Node.jsWhy Node.js
Why Node.js
guileen
 

Similar to JSON Fuzzing: New approach to old problems (20)

Advanced I/O in browser
Advanced I/O in browserAdvanced I/O in browser
Advanced I/O in browser
 
JavaScript Lessons 2023 V2
JavaScript Lessons 2023 V2JavaScript Lessons 2023 V2
JavaScript Lessons 2023 V2
 
Json
JsonJson
Json
 
WebSocket JSON Hackday
WebSocket JSON HackdayWebSocket JSON Hackday
WebSocket JSON Hackday
 
JSON & AJAX.pptx
JSON & AJAX.pptxJSON & AJAX.pptx
JSON & AJAX.pptx
 
Introduction to JSON & AJAX
Introduction to JSON & AJAXIntroduction to JSON & AJAX
Introduction to JSON & AJAX
 
Basics of JSON (JavaScript Object Notation) with examples
Basics of JSON (JavaScript Object Notation) with examplesBasics of JSON (JavaScript Object Notation) with examples
Basics of JSON (JavaScript Object Notation) with examples
 
huhu
huhuhuhu
huhu
 
Json
JsonJson
Json
 
CouchDB on Android
CouchDB on AndroidCouchDB on Android
CouchDB on Android
 
Why Nodejs Guilin Shanghai
Why Nodejs Guilin ShanghaiWhy Nodejs Guilin Shanghai
Why Nodejs Guilin Shanghai
 
Why Node.js
Why Node.jsWhy Node.js
Why Node.js
 
Node.js Patterns for Discerning Developers
Node.js Patterns for Discerning DevelopersNode.js Patterns for Discerning Developers
Node.js Patterns for Discerning Developers
 
Json at work overview and ecosystem-v2.0
Json at work   overview and ecosystem-v2.0Json at work   overview and ecosystem-v2.0
Json at work overview and ecosystem-v2.0
 
Http4s, Doobie and Circe: The Functional Web Stack
Http4s, Doobie and Circe: The Functional Web StackHttp4s, Doobie and Circe: The Functional Web Stack
Http4s, Doobie and Circe: The Functional Web Stack
 
Node.js introduction
Node.js introductionNode.js introduction
Node.js introduction
 
NodeJS
NodeJSNodeJS
NodeJS
 
JSON
JSONJSON
JSON
 
Node.js - async for the rest of us.
Node.js - async for the rest of us.Node.js - async for the rest of us.
Node.js - async for the rest of us.
 
Jackson beyond JSON: XML, CSV
Jackson beyond JSON: XML, CSVJackson beyond JSON: XML, CSV
Jackson beyond JSON: XML, CSV
 

Recently uploaded

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 

Recently uploaded (20)

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Less Is More: Utilizing Ballerina to Architect a Cloud Data Platform
Less Is More: Utilizing Ballerina to Architect a Cloud Data PlatformLess Is More: Utilizing Ballerina to Architect a Cloud Data Platform
Less Is More: Utilizing Ballerina to Architect a Cloud Data Platform
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Choreo: Empowering the Future of Enterprise Software Engineering
Choreo: Empowering the Future of Enterprise Software EngineeringChoreo: Empowering the Future of Enterprise Software Engineering
Choreo: Empowering the Future of Enterprise Software Engineering
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation Computing
 

JSON Fuzzing: New approach to old problems

  • 1. JSON Fuzzing: New approach to old problems - Tamaghna Basu - K.V.Prashant tamaghna.basu@gmail.com good.best.guy@gmail.com http://null.co.in/ http://nullcon.net/
  • 2. Who are we? We are still discovering ourselves • Kaun hu main… • kahan hu main…. • Main yahan kaise aya… • Purpose of my life… Till then, K.V.Prashant :- CEH, CISSP Security consultant/researcher. An avid null community member. Tamaghna Basu :- GCIH, CEH, ECSA, RHCE, Diploma in Cyber Law. Once coder, now researcher. A net addict citizen of India. http://null.co.in/ http://nullcon.net/
  • 3. What are you going to tolerate in next 30 mins or so… • Lazy bums we are. • Wanted an easy tool to test apps with JSON support. Unable to find one. • Laziness inside us prompted us to use an existing to and add JSON functionality instead building it from scratch. http://null.co.in/ http://nullcon.net/
  • 4. Disclaimer We are not responsible for any mental, financial and physical health issues arising after viewing this presentation. We are not responsible for any damage to conference venue arising due our conference speech So be seated at your own risk  http://null.co.in/ http://nullcon.net/
  • 5. Why are we here? Because of him… • American computer programmer and entrepreneur • More popular for his involvement and creation of JSON format (Ref: Wikipedia) Doglas Croockford http://null.co.in/ http://nullcon.net/
  • 6. JSON:- What is that ? JSON (an acronym for JavaScript Object Notation) is a lightweight text-based open standard designed for human- readable data interchange. It is derived from the JavaScript programming language for representing simple data structures and associative arrays, called objects. Despite its relationship to JavaScript, it is language-independent, with parsers available for most programming languages. The JSON format was originally specified by Douglas Crockford, and is described in RFC 4627. The official Internet media type for JSON is application/json. The JSON filename extension is .json Blah… Blah… Blah… SEE Wikipedia… http://null.co.in/ http://nullcon.net/
  • 7. JSON:- What is that ? In simple language  It's a method to exchange data in a simple structured format between web-client and server.  Mostly used with AJAX request/response scenarios.  Lightweight, lesser tags and easy to parse- less computational intensive than XML  Extensively used in applications developed by companies like Google, Yahoo, Amazon etc. http://null.co.in/ http://nullcon.net/
  • 8. JSON: Client Side processing var abc ='{"loginId":"'+ document.test.name.value +'","pwd":"'+ document.test.password.value +'"}'; var req = null; if (window.XMLHttpRequest) { req = new XMLHttpRequest(); } else if (window.ActiveXObject) { try { req = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { req = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {} } } req.onreadystatechange = function() { if(req.readyState == 4) { if(req.status == 200) { var employee=eval(+req.responseText+); document.write(employee.name); document.write(employee.age); }else { document.getElementById("realtooltip2").innerHTML="Error: returned status code " + req.status + " " + req.statusText; } } }; req.open("POST", "http://in-prashantkv.in.kworld.kpmg.com:8080/servlets/Search", true); req.send(abc); http://null.co.in/ http://nullcon.net/
  • 9. JSON: Message Format Request sent to server : { “LoginId”:”name” “pwd":"secret” } Response received from server after authentication and processing: { “name”:”Prashant” “age":"secret” } http://null.co.in/ http://nullcon.net/
  • 10. JSON: Server Side processing Using org.json libraries we can parse JSON object in below way: public class HelloWorld extends HttpServlet{ public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ { StringBuffer jb = new StringBuffer(); String line = null; BufferedReader reader = request.getReader(); while ((line = reader.readLine()) != null) jb.append(line); JSONObject jsonObject = new JSONObject(jb.toString()); String pwd = jsonObject.getString("pwd"); String uname = jsonObject.getString("loginId"); ….. http://null.co.in/ http://nullcon.net/
  • 11. JSON: Server Side processing Using org.json libraries we can create JSON object in below method: public class HelloJSON { public static void main(String args[]){ JSONObject jobject=new JSONObject(); jobject.put("name","prashant"); jobject.put("Age",new Integer(25)); ......... } } http://null.co.in/ http://nullcon.net/
  • 12. JSON Fuzzing: What's missing  Almost everything   Current tools support only name/value pair format of data e.g. login=test&passwd=test123&seclogin=on  But not JSON format like: {"loginId":"test@ttt.com","pwd":"12345"}  Tiresome to edit each field each field in http proxies like paros http://null.co.in/ http://nullcon.net/
  • 13. JSON Fuzzing: What's missing login=test&passwd=test 123&seclogin=on&Form Name=existing http://null.co.in/ http://nullcon.net/
  • 14. JSON Fuzzing: What's missing http://null.co.in/ http://nullcon.net/
  • 15. JSON Fuzzing: What's missing http://null.co.in/ http://nullcon.net/
  • 16. JSON Fuzzing: What's missing http://null.co.in/ http://nullcon.net/
  • 17. JSON Fuzzing: What we did  Took a popular Firefox addon  Added conversion module to convert JSON to name/value pair  Added fuzzing capabilities on converted name value/pair  Convert back fuzzed values to JSON object and complete the request (current contribution still under review) http://null.co.in/ http://nullcon.net/
  • 18. JSON Fuzzing: Demo Demo http://null.co.in/ http://nullcon.net/
  • 19. JSON Fuzzing: Road Ahead Support for various JSON format :  Simple object - {"loginId":"test@ttt.com","pwd":"12345"}  Nested object – { "name": "Jack ("Bee") Nimble", "format": { "type": "rect", "width": 1920} }  Array – ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] http://null.co.in/ http://nullcon.net/
  • 20. JSON Fuzzing: Road Ahead  Present code changes to Tamper data submitted to original writer  Adding JSON fuzzing capabilities to other tools like Webscarab  Release a JSON application with common vulnerabilities http://null.co.in/ http://nullcon.net/
  • 21. JSON Fuzzing: References  JSON reference site www.json.org  JSON Ajax tutorials http://www.ibm.com/developerworks/web/li brary/wa-ajaxintro11.html  Tamper data page https://addons.mozilla.org/en- us/firefox/addon/tamper-data/ http://null.co.in/ http://nullcon.net/
  • 22. JSON Fuzzing: Road Ahead If you are still there/awake then Dhanyawad Special Thanks to null community Tamaghna Basu - tamaghna.basu@gmail.com K.V.Prashant - tamahawk- -good.best.guy@gmail.com techguru.blogspot.com - twitter.comtitanlambda http://null.co.in/ http://nullcon.net/