Advertisement
Guest User

Untitled

a guest
May 27th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # 2015.04.17
  2. Found some programmatically composed & interesting SQL statements in some webapps...
  3.  
  4. ```sh
  5. verbose: read: { params: { ContactID: [ 100 ], _SiteID: 12345 },
  6. database: 'Site12345',
  7. table: 'Contact',
  8. callback: [Function] }
  9. verbose: [ { ContactID: [ 100 ], _SiteID: 12345 } ]
  10. verbose: SELECT * FROM `Site118`.`Contact` WHERE (ContactID IN (4)) AND (ContactID IN (4)) LIMIT 1000
  11. verbose: (tid:55, RemoteModel.Site_Contact_update) result from ExtDirect after 0.219 seconds
  12. [POST /direct] [200 80.362 ms] [-@8.8.8.8]
  13. ```
  14.  
  15. I, for one, embrace the idea of searching on criteria we already have and getting at least 990 irrelevant results.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement