domingo, 30 de agosto de 2020

Video Archives Of Security Conferences And Workshops


Just some links for your enjoyment

List of security conferences in 2014

Video archives:




AIDE (Appalachian Institute of Digital Evidence)


Blackhat
Botconf
Bsides
Chaos Communication Congress
Defcon
Derbycon
Digital Bond's S4x14
Circle City Con
GrrCON Information Security Summit & Hacker Conference
Hack in the box HITB
InfowarCon
Ruxcon
Shmoocon
ShowMeCon
SkyDogCon
TakeDownCon
Troopers
Heidelberg Germany
Workshops, How-tos, and Demos

Special thanks to  Adrian Crenshaw for his collection of videos
More information
  1. Underground Hacker Sites
  2. Github Hacking Tools
  3. Ethical Hacker Tools
  4. Hacker Tools Windows
  5. Hack Tools Mac
  6. Hack And Tools
  7. Underground Hacker Sites
  8. Hack Tools Download
  9. Hacker Tool Kit
  10. Game Hacking
  11. Hack Apps
  12. Hacker Tools List
  13. Tools Used For Hacking
  14. Hacking Tools For Windows 7
  15. Hacker Tools Github
  16. Pentest Tools Bluekeep
  17. Install Pentest Tools Ubuntu
  18. Hacker Tools Free Download
  19. Hack Tool Apk No Root
  20. Hacking Tools Kit
  21. Pentest Tools Bluekeep
  22. Pentest Tools Subdomain
  23. Underground Hacker Sites
  24. Hacking Tools Windows 10
  25. Hack Website Online Tool
  26. Black Hat Hacker Tools
  27. Hacking Tools Download
  28. Hacking Tools Kit
  29. Hacker Hardware Tools
  30. Nsa Hacker Tools
  31. Best Pentesting Tools 2018
  32. Hacker Tools For Windows
  33. Pentest Tools Free
  34. Hack Tools For Windows
  35. Nsa Hack Tools
  36. Hacking Tools Pc
  37. Best Hacking Tools 2019
  38. Hacker Tool Kit
  39. Pentest Reporting Tools
  40. Hacking Tools 2020
  41. Underground Hacker Sites
  42. Beginner Hacker Tools
  43. Usb Pentest Tools
  44. Hack Tools For Mac
  45. Hacker Tools Software
  46. Pentest Tools Url Fuzzer
  47. Hacking Tools Name
  48. Hacker Tools Windows
  49. Hacker Tools
  50. Hack Tools For Mac
  51. Hacking Tools Name
  52. Hacking Apps
  53. Black Hat Hacker Tools
  54. Pentest Tools Website Vulnerability
  55. Ethical Hacker Tools
  56. Hacking Tools Github
  57. Computer Hacker
  58. Hacking Tools Download
  59. Pentest Tools Website Vulnerability
  60. Hacker Security Tools
  61. Pentest Tools For Android
  62. Hacking Tools Windows 10
  63. What Is Hacking Tools
  64. Pentest Tools Open Source
  65. Install Pentest Tools Ubuntu
  66. Hacking App
  67. How To Make Hacking Tools
  68. Hacker Tools For Ios
  69. Hacker Tools Apk Download
  70. Hack Tools Pc
  71. Pentest Tools For Windows
  72. Top Pentest Tools
  73. Top Pentest Tools
  74. Hackers Toolbox
  75. Hack And Tools
  76. Hack Tools Pc
  77. How To Hack
  78. Tools Used For Hacking
  79. Pentest Tools Review
  80. How To Install Pentest Tools In Ubuntu
  81. Hacker
  82. Hacking Tools For Windows
  83. Underground Hacker Sites
  84. Hack Tools For Mac
  85. Hack Website Online Tool
  86. Hack Tools 2019
  87. Hacker Tools Online
  88. Pentest Tools Subdomain
  89. Hack Tools
  90. Tools Used For Hacking
  91. Pentest Tools Website Vulnerability
  92. Growth Hacker Tools
  93. Hack Tools Download
  94. Hak5 Tools
  95. Android Hack Tools Github
  96. Hacker Tools Software
  97. Pentest Tools Open Source
  98. Hacking Tools Name
  99. Hacker Tools Free
  100. Black Hat Hacker Tools
  101. Hacker Tools Software
  102. Hacker Tools For Ios
  103. Hacker Tools Software
  104. World No 1 Hacker Software
  105. Pentest Tools List
  106. Pentest Recon Tools
  107. Hacker Techniques Tools And Incident Handling
  108. Hack And Tools
  109. Top Pentest Tools
  110. Hack Tools For Games
  111. Pentest Tools Windows
  112. Pentest Tools Find Subdomains
  113. Pentest Tools Online
  114. Hacking Tools Kit
  115. Beginner Hacker Tools
  116. Hacker Tools 2020
  117. Hacker Tools Hardware
  118. Hacker Tools 2020
  119. Free Pentest Tools For Windows
  120. Hacking App
  121. Kik Hack Tools
  122. Underground Hacker Sites
  123. Tools Used For Hacking
  124. Pentest Tools Alternative
  125. Hacking Tools For Mac
  126. Hacker Tools Apk Download
  127. Hack Tools Mac
  128. Pentest Tools For Android
  129. Hack Tools Github
  130. Hack Apps
  131. Nsa Hack Tools Download
  132. Termux Hacking Tools 2019
  133. Hack And Tools
  134. Game Hacking
  135. What Are Hacking Tools
  136. Pentest Tools Apk
  137. Hack Tools Github
  138. Hacker Tools For Windows
  139. Hack Tool Apk
  140. Hacker Tools Online
  141. Hacker Tools
  142. Hacker Tools Free
  143. Hak5 Tools
  144. Pentest Tools Website Vulnerability
  145. Hacks And Tools
  146. Github Hacking Tools
  147. Hacks And Tools
  148. Hacker Tools For Mac
  149. Hacking Tools For Pc
  150. What Are Hacking Tools
  151. Hacker Tool Kit
  152. Hacker Tool Kit
  153. What Is Hacking Tools
  154. Nsa Hack Tools Download
  155. Pentest Tools For Ubuntu
  156. Hackers Toolbox
  157. Hack Website Online Tool
  158. Hacker Tools List
  159. Pentest Tools Open Source
  160. Hacking App
  161. Hack Apps
  162. Hacker Tools 2020
  163. Hacker Tools Github
  164. Hacker Tools Mac
  165. Pentest Tools Tcp Port Scanner
  166. Hak5 Tools
  167. Pentest Tools Website
  168. Hacking Tools For Games

C++ Std::Condition_Variable Null Pointer Derreference


This story is about a bug generated by g++ and clang compilers (at least)
The condition_variables is a feature on the standard library of c++ (libstdc++), when its compiled statically a weird asm code is generated.


Any example on the link below will crash if its compiled statically:
 https://en.cppreference.com/w/cpp/thread/condition_variable



In this case the condition_variable.wait() crashed, but this happens with other methods, a simple way to trigger it:




If this program is compiled dynamically the crash doesn't occur:

Looking the dissasembly there is a surprise created by the compiler:


Compilers:
    g++  9.2.1+20200130-2
    clang++ v9

Both compilers are generating the "call 0x00"

If we check this call in a dynamic compiled:




The implementation of condition_variable in github:
https://github.com/gcc-mirror/gcc/blob/b7c9bd36eaacac42631b882dc67a6f0db94de21c/libstdc%2B%2B-v3/include/std/condition_variable


The compilers can't copile well this code in static,  and same happens on  other condition_variable methods.
I would say the _lock is being assembled improperly in static, is not exacly a null pointer derreference but the effects are the same, executing code at address 0x00 which on linux is a crash on most of cases.

More info


How To Hack Facebook By Social Engineering Attack

This video is specially for educational purpose only. I'm not responsible for your any illegal activity. Thanks!

 Social Engineering Attack

Phishing is the fraudulent attempt to obtain sensitive information such as usernames, passwords, and credit card details (and money), often for malicious reasons, by disguising as a trustworthy entity in an electronic communication. The purpose of this video tutorial is to show you How hackers hacked any thing by Social Engineering Attack.

Phishing is a cybercrime in which a target or targets are contacted by email, telephone or text message by someone posing as a legitimate institution to lure individuals into providing sensitive data such as personally identifiable information, banking and credit card details, and passwords. The information is then used to access important accounts and can result in identity theft and financial loss.

Kali Linux has many tools for doing social engineering attacks. Setoolkit is the most powerful tool in Kali Linux to do a social engineering attacks over the same and different networks. 

Social Engineering over the same network requires the local IP address of your system just like this one 192.168.1.2. Now how you can get your local IP address from your system. To find local IP address just open up your terminal in Linux distribution:

Type: ifconfig wlan0 (if you are using WiFi)
Type: ifconfig eth0 (if you are using eth0)
Type: ifconfig (It display all information about your network)

Now you've another thing to do is that you just have to clone a web page you wanna clone like Facebook, g-mail, twitter etc. Similarly, If you wanna clone a facebook page so for this you just have to type www.facebook.com over your system's terminal for cloning a login page for Social Engineering attack.Still If you don't know how to do that so don't be worry, I did all the process practically in the below just go down and watch it!