Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. 12.3.19
  2.  
  3. CTRL+SHIFT+I - Show HTML code in Chrome browser
  4.  
  5.  
  6. JavaScript-
  7. Document – calls to the entire doument
  8. Document.getElementById(‘elementID’)
  9.  
  10. httpbin.org
  11.  
  12. soup.select == document.querySelectorAll
  13.  
  14. HW take Google_search.py and make it work for he first three pages
  15.  
  16. _________________________________________________________________________
  17. Filtering Google search by site:website.co.il for sensitive
  18.  
  19. Dir-buster to take a list of urls (dictionary in a txt file) with multithreading and
  20. python3 -i python.file ---- running python in interactive mode
  21. ______________________________________________________________________________
  22.  
  23.  
  24. vim -O file1 file2 Opens two files switching between them with CTRL+w+arrow
  25. Replace in vim:
  26. :%s (search) / <pattern for replace>/ <replace pattern> /g (global)
  27. vim basic navigation:
  28. w b to move back and forth in vim, f / Shift+f is to go until the next keyboard character
  29. q is for recording - doing an action and repeating with a shortcut
  30.  
  31.  
  32. When using python to scrape google, the server will send the data back in an older format- We need to change the http headers to something more up to date
  33.  
  34. _______________________________________________________________________________
  35.  
  36. white box- full transparency
  37. gray box- some information is divulged
  38. black box- no information is divulged
  39.  
  40. Reconnaissance- active (any direct access to servers) and passive
  41. ____________________________________
  42.  
  43. Social engineering: Email, phone/sms-> referred to the domain-> worker
  44. Creating a table to list workers' details with their name, title, email, phone, social
  45.  
  46. IntelTechniques- Tools- Classic Version- Facebook- <facebook profile> - Find Facebook ID-
  47. copy the image address of the individual and search on google for additional affiliations
  48.  
  49. Google Dorking: filter with site:<site> and title:"<keyword>" inurl:"<keyword>" filetype:<>
  50. - (is not)
  51. for subdomains >>>> site:intel.com -site:www.intel.com
  52. ghdb- google hacking data base for google search sytanxes
  53.  
  54. <site.com/robots.txt> shows a list of directories that are not indexed for google
  55.  
  56. accessing webpages through googles cache to go undeteted and to recover removed data
  57.  
  58. waybackmachine to see past snapshots of websites
  59.  
  60. email-checker to see if email exists (some servers dont allow email verification)
  61.  
  62. characterizing our system- enter company name and domain:
  63. go to linkedin > if there is only one company continue- if not let the user choose which one
  64.  
  65. parse list of employees and save (to file/list or ram) names and titles
  66.  
  67. additional function to google and collects first five pages of site:site intext:"@domain" and find emails with regex
  68.  
  69. we now have a sample list of emails - create a pattern to determine how the emails are written and distribute them accordingly to the employee table
  70.  
  71. postgresql - resource to create the table for assignment
  72.  
  73. bonus- also in facebook
  74.  
  75. _____________________________________________________________________________
  76.  
  77. foca- eleven paths -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement