├── LICENSE ├── README.md ├── Raw Markdown ├── Company Case │ ├── Image-Screenshots Template.md │ └── Main Template.md ├── Missing Person Case │ ├── Image-Screenshots Template.md │ └── Main Template.md ├── Person of Interest Case │ ├── Image-Screenshots Template.md │ └── Main Template.md ├── README.md ├── Resources │ ├── Articles │ │ ├── Dark Web.md │ │ ├── Other Resources.md │ │ └── Searching the Internet.md │ ├── Search Queries │ │ ├── Google Dorks for finding Various Online Devices.md │ │ ├── Google Dorks.md │ │ └── Hunting for ICS-SCADA Systems.md │ ├── Sites │ │ ├── Aviation, Marine, and Space Intel.md │ │ ├── Dark Web.md │ │ ├── OSINT Sitemaps.md │ │ ├── Search Engines.md │ │ ├── Uncovering Images.md │ │ ├── Vehicles.md │ │ └── cryptocurrency.md │ ├── Sock Accounts │ │ └── General Notes.md │ └── Tools │ │ ├── Breach Tools.md │ │ ├── Browser Exstensions.md │ │ ├── Dark Web.md │ │ ├── ICS-SCADA.md │ │ ├── Image Tools.md │ │ ├── OSINT Framework Tools.md │ │ └── Social Media Scrapers.md └── What Is Intelligence What is OSINT.md └── TJ-OSINT-Notebook-v1.jex /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TJ-OSINT-Notebook 2 | 3 | ## Intial Release 4 | November 18th 2022 5 | 6 | ## Main Purpose: 7 | This OSINT Notebook provides an overview of the tools, techniques, and resources that I use for a variety of situations for performing reconaissance and OSINT operations. This Notebook has helped me in many situations to learn more about OSINT and how to analyze the data that is out there on the internet. Included in the notebook are three templates that you can copy, fill in, or repurpose depending on the information you need to document for the operations you are working on. These case templates helped me keep a track of things I found online depending on the situation that I was assigned to assess. 8 | 9 | ## A word of Advice: 10 | 11 | Although this notebook may be missing a tool, resource, or technique that other OSINT operators use, it is really hard to keep a track of what is out there. There will always be a new tool, search technique, or resource telling you how to OSINT. 12 | At the end of the day you should use this notebook as a way to start a baseline to create your own or to modify it for your use cases and situations. 13 | 14 | 15 | ## Features with Joplin: 16 | - Notes can be searchable, copied, tagged, and modified either from the applications directly or from your text editor. 17 | - Markdown Editor and Reader. Easy to import and export notes to multiple formats. 18 | - WebClipper to save web pages and screenshot from Firefox and Chrome Browser 19 | - Sync notes on various cloud applications such as NextCloud, Dropbox, OneDrive, and Amazon S3 20 | - Sync notes on a local file share or WebDav. 21 | - A large repository of community plugins to integrate your note-taking. 22 | - Note Link Graph UI plugin to link relevant notes between other notebooks you have. 23 | - Compatible to work on Windows, Linux, macOS, iOS, and Android. 24 | - Opensource and a large growing community to help support it! 25 | 26 | ## What does the template include? 27 | - Three Case Templates (Company Case, Missing Person Case, Person of Interest Case). 28 | - List of custom google dork querys and public querys. 29 | - List of Relevant Search engines 30 | - A collection of Dark Web sites that I use for certain OSINT situations. 31 | - Tools that include installation steps and command line references 32 | 33 | 34 | ## Instructions 35 | **NOTE:** You must have Joplin installed on your system. 36 | 1. Open Joplin 37 | 2. Click File and select `Import` 38 | 3. Select `JEX - Joplin Export File` 39 | 4. Locate the OSINT-Notebook and it should appear in Joplin 40 | 41 | ## Feedback, Suggestions and Contributions 42 | Although this template is just the start there can always be room to add new tips, resources, or guides for other 43 | people to use in this template. Feel free to post any suggestions that you may have or want to include by submitting 44 | an issue in the repo. 45 | 46 | ## Credit 47 | 48 | I want to quickly recognize and thank those that helped me provide there suggestions and feedback as I continued working on developing this notebook: 49 | 50 | - rag_sec 51 | - Adrestia 52 | - 0xDISREL 53 | - Andrew Nowlin 54 | - 5nacks 55 | - Alethe Denis: https://twitter.com/AletheDenis 56 | 57 | -------------------------------------------------------------------------------- /Raw Markdown/Company Case/Image-Screenshots Template.md: -------------------------------------------------------------------------------- 1 | # Image #1: 2 | - Where was the image found: 3 | - Description of the image: 4 | - Other details about the image: 5 | - EXIF Data: 6 | -------------------------------------------------------------------------------- /Raw Markdown/Company Case/Main Template.md: -------------------------------------------------------------------------------- 1 | # Template Breakdown: 2 | 3 | # Summary Overview 4 | - Summary about the company. 5 | 6 | # Leadership: 7 | 8 | ## List out the directors/leaders that operate the company: 9 | 10 | (copy and paste the bullets if multiple people are identified) 11 | - Name: 12 | - Role: 13 | - Email: 14 | - Phone Number: 15 | - Address: 16 | - Executives/Leadership: 17 | - Employees that work under them: 18 | - Social Media: 19 | 20 | # Corporate Locations: 21 | 22 | ## Headquarters: 23 | - 24 | 25 | ## Offices/Facilities of Interest: 26 | - 27 | 28 | # Social Media Precensce: 29 | 30 | ## List company social media presences that the company uses: 31 | - 32 | 33 | # Job postings: 34 | 35 | ## List the current job postings that the company is offering that could show a value of interest: 36 | - 37 | 38 | # Companies technical systems/assets: 39 | 40 | ## List systems that are found publicly that may be operated/managed by the company: 41 | 42 | - Citrix Remote Access: 43 | - SSL/VPN Gateways: 44 | - Email Gateways (Office 365, Hosted Exchange, Gmail): 45 | - Identity Providers (Azure, GSuite): 46 | - External Identity: 47 | - External User Access Portals: 48 | - Public Websites: 49 | - IP Addressing: 50 | - Cloud Providers: 51 | - Hosting Providers: 52 | - SAAS Systems: 53 | 54 | # Recent cases of the company being involved in certain incidents: 55 | 56 | ## General Incidents: 57 | - 58 | 59 | ## Technical Incidents 60 | - 61 | 62 | # Relevant People of Interest: 63 | 64 | ## List people that could be of interest to the case 65 | - 66 | 67 | # Third Party Suppliers/Supply Chain Companies: 68 | 69 | ## Main Subsidaries: 70 | - 71 | 72 | # Other Related Companies: 73 | - 74 | 75 | ## Competitors: 76 | - 77 | 78 | # Analyst notes: 79 | 80 | ## Sensitive data or documents found through public websites or dark web/breaches: 81 | 82 | ## Email addresses found through search engines: 83 | 84 | 85 | ## Leaked Credentials: 86 | -------------------------------------------------------------------------------- /Raw Markdown/Missing Person Case/Image-Screenshots Template.md: -------------------------------------------------------------------------------- 1 | # Image #1: 2 | - Where was the image found: 3 | - Description of the image: 4 | - Other details about the image: 5 | - EXIF Data: 6 | -------------------------------------------------------------------------------- /Raw Markdown/Missing Person Case/Main Template.md: -------------------------------------------------------------------------------- 1 | # Template Breakdown: 2 | 3 | # Summary Overview 4 | 5 | - Information/Intel about the person that went missing 6 | 7 | # Personal Information: 8 | 9 | - Full Name: 10 | - Alias Names/Handles: 11 | - Age: 12 | - Address: 13 | - Height/Weight: 14 | - Gender: 15 | - Birth Date: 16 | - Personal Email: 17 | - Phone Numbers: 18 | - Breached Passwords: 19 | - Single/Married: 20 | - Forms of Identification: 21 | - Vehicle Information (Make, Year, Color, License): 22 | 23 | # Social Media: 24 | 25 | - Facebook: 26 | - Twitter: 27 | - Instagram: 28 | - Youtube: 29 | - Vysco: 30 | - Snapchat: 31 | - TikTok: 32 | - Tumblr: 33 | - PinInterest: 34 | - Vk: 35 | - Reddit: 36 | - Craiglist: 37 | - Kijiji: 38 | - Telegram: 39 | - Github 40 | - Discord: 41 | - Skype: 42 | 43 | # Gamer Handles: 44 | - Steam: 45 | - Xbox: 46 | - Playstation Network: 47 | - Other: 48 | 49 | # Other accounts/handles: 50 | 51 | - Blog Posts: 52 | - Forum profiles: 53 | 54 | # Work/Careers: 55 | 56 | - Linkedin: 57 | - Company Name: 58 | - Job Description: 59 | - Start/End Date: 60 | - Work Email: 61 | - Work Website: 62 | - Work Phone Number: 63 | - Work Address: 64 | 65 | - Interesting comments from employees: 66 | 67 | # Home/Place of Living: 68 | - Address: 69 | - Noticeable Habits: 70 | 71 | ## Owns the Home/Place: 72 | - Information/Tips from the neighbors: 73 | - Any Issues in the area? 74 | 75 | ## Lives in a rental place: 76 | 77 | - Landlords Name: 78 | - Landlords Phone Number: 79 | - Information/Tips from other tenants: 80 | - Any Issues in the Area? 81 | 82 | # Other Information about the Person: 83 | - Unique Identifiers (Tattos, scars, piercings/jewlery): 84 | - Habits (Smoking, Drinking, Hitch Hiking, Hangouts, Gang Affliation): 85 | - Tips/Other information where the subject may be headed: 86 | - History of the person missing in the past: 87 | 88 | # Technical Information/Devices: 89 | - Device: 90 | - Brand/Modfel: 91 | - Carrier: 92 | - ISP: 93 | - IP Addresses: 94 | - Accounts involved in a breach: 95 | 96 | # Friends: 97 | 98 | - Name: 99 | - Relation: 100 | - Address: 101 | - Phone Number: 102 | - Email: 103 | - Social Media Handle: 104 | - Proof/Evidence: 105 | - Interesting comments from there friend/friends: 106 | 107 | 108 | # Family: 109 | 110 | - Name: 111 | - Relation: 112 | - Address: 113 | - Phone Number: 114 | - Email: 115 | - Social Media Handle: 116 | - Proof/Evidence: 117 | - Interesting comments from family members: 118 | 119 | # Other Intel: 120 | 121 | ## Day Last Seen: 122 | - Details of the day the person was seen: 123 | - Location: 124 | - Any Mood Altercation, Conversations, or directions where they could be going to next. 125 | - Were they intending to meet someone? 126 | - Other Information that can relate to when the person was seen. 127 | 128 | 129 | -------------------------------------------------------------------------------- /Raw Markdown/Person of Interest Case/Image-Screenshots Template.md: -------------------------------------------------------------------------------- 1 | # Image #1: 2 | - Where was the image found: 3 | - Description of the image: 4 | - Other details about the image: 5 | - EXIF Data: 6 | -------------------------------------------------------------------------------- /Raw Markdown/Person of Interest Case/Main Template.md: -------------------------------------------------------------------------------- 1 | # Template Breakdown 2 | 3 | # Summary Overview 4 | 5 | Describe the case of this subject and why they are a interest to your assignment? 6 | 7 | # Personal Information: 8 | 9 | - Full Name: 10 | - Alias Names/Handles: 11 | - Age: 12 | - Address: 13 | - Height/Weight: 14 | - Gender: 15 | - Birth Date: 16 | - Single/Married: 17 | - Forms of Identification: 18 | - Vehicle Information (Make, Year, Color, License): 19 | 20 | # Social Media: 21 | 22 | - Facebook: 23 | - Twitter: 24 | - Instagram: 25 | - Vysco: 26 | - Snapchat: 27 | - TikTok: 28 | - Tumblr: 29 | - PinInterest: 30 | - Telegram: 31 | - Signal: 32 | - Vk: 33 | - Reddit: 34 | - Craiglist: 35 | - Kijiji: 36 | - ebay: 37 | - wechat: 38 | - kik: 39 | 40 | # Other accounts/handles: 41 | - Gamer Handles: 42 | - Blog Posts: 43 | - Forum profiles: 44 | 45 | # Work/Careers: 46 | 47 | - Linkedin: 48 | - Company Name: 49 | - Job Description: 50 | - Start/End Date: 51 | - Work Email: 52 | - Work Phone Number: 53 | - Work Address: 54 | 55 | - Interesting comments from employees: 56 | 57 | # Home/Place of Living: 58 | - Address: 59 | - Noticeable Habits: 60 | 61 | ## Owns the Home/Place: 62 | - Information/Tips from the neighbors: 63 | - Any Issues in the area? 64 | 65 | ## Lives in a rental place: 66 | 67 | - Landlords Name: 68 | - Landlords Phone Number: 69 | - Information/Tips from other tenants: 70 | - Any Issues in the Area? 71 | 72 | # Other Information about the Person: 73 | - Unique Identifiers (Tattos, scars, piercings/jewlery): 74 | - Habits (Smoking, Drinking, Hitch Hiking, Hangouts, Gang Affliation): 75 | - Tips/Other information where the subject may be headed: 76 | - History of the person missing in the past: 77 | 78 | # Technical Information/Devices: 79 | - Device: 80 | - Brand/Modfel: 81 | - Carrier: 82 | - ISP: 83 | - IP Addresses: 84 | - Accounts involved in a breach: 85 | -------------------------------------------------------------------------------- /Raw Markdown/README.md: -------------------------------------------------------------------------------- 1 | # About This Notebook 2 | 3 | This OSINT Notebook provides an overview of the tools, techniques, and resources that I use for a variety of situations when it comes to performing reconnaissance and OSINT operations. This Notebook has helped me in many situations to learn more about OSINT and how to analyze the data that is out there on the internet. 4 | 5 | Included in the notebook are three templates that you can copy and fill in, or repurpose depending on the information you need for your research. These case templates helped me keep a track of things I found online depending on the situation that I was assigned to assess. 6 | 7 | Although this notebook may be missing a tool, resource, or technique that other OSINT operators use, it is really hard to keep a track of what is out there. There will always be a new tool, search technique, or resource telling you how to OSINT. At the end of the day you should use this notebook as a way to start a baseline to create your own or to modify it for your use cases and situations. 8 | 9 | # Created by TJ Null 10 | 11 | **Twitter:** https://twitter.com/TJ_Null 12 | **Mastodon (Infosec.Exchange):** https://infosec.exchange/@Tjnull 13 | **Github:** https://github.com/tjnull 14 | 15 | ## Special Thanks 16 | 17 | I want to quickly recognize and thank those that helped me craft this notebook through their reviews and feedback, including: 18 | 19 | - rag_sec 20 | - Adrestia 21 | - 0xDISREL 22 | - Andrew Nowlin 23 | - 5nacks 24 | - Alethe Denis: https://twitter.com/AletheDenis 25 | 26 | # Contribution: 27 | 28 | If you would like to contribute to the template or provide improvements, you can submit an issue on the Github Repo here: 29 | 30 | - https://github.com/tjnull/ 31 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Articles/Dark Web.md: -------------------------------------------------------------------------------- 1 | # General Notes 2 | - https://github.com/fastfire/deepdarkCTI 3 | - https://www.osintcombine.com/post/dark-web-searching 4 | 5 | # Sub Reddits 6 | - https://www.reddit.com/r/darknet/ 7 | - https://www.reddit.com/r/TOR/ 8 | - https://www.reddit.com/r/onions/ 9 | - https://reddit.com/r/DarkWebDread 10 | 11 | # News/Information Sites 12 | - Darknetlive: https://darknetlive.com/ 13 | - Darknet stats: https://www.darknetstats.com/ 14 | - DNStats: https://dnstats.net/ 15 | - The Daily Swig: https://portswigger.net/daily-swig/dark-web 16 | - DarknetOne: https://darknetone.com/ 17 | - DarknetMarkets: https://www.darknetmarkets.com/ 18 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Articles/Other Resources.md: -------------------------------------------------------------------------------- 1 | ## Places to learn more about OSINT 2 | - https://www.overtoperator.com/s/daily-intel-brief 3 | - https://www.maltego.com/blog/top-osint-infosec-resources-for-you-and-your-team/ 4 | 5 | ## Image-Based OSINT Investigations Tips & Techniques: 6 | - https://www.skopenow.com/resource-center/image-based-osint-investigations-tips-techniques 7 | 8 | ## Telegram 9 | - Telegram OSINT References: https://github.com/Ginsberg5150/Discord-and-Telegram-OSINT-references 10 | 11 | ## Books 12 | - Open Source Intelligence Techniques: https://inteltechniques.com/book1.html 13 | - Open Source Intelligence Handbook: https://i-intelligence.eu/uploads/public-documents/OSINT_Handbook_2020.pdf 14 | - Nowhere To Hide: https://www.danielfarberhuang.com/nowheretohidedownload 15 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Articles/Searching the Internet.md: -------------------------------------------------------------------------------- 1 | # Site References 2 | - Mastering Google Search Operators: https://www.moz.com/mastering-google-search-operators-in-67-steps 3 | 4 | # Talks 5 | - https://www.blackhat.com/presentations/bh-europe-05/BH_EU_05-Long.pdf 6 | 7 | # Books: 8 | - https://www.amazon.com/Google-Hacking-Penetration-Testers-Johnny/dp/1597491764 9 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Search Queries/Google Dorks for finding Various Online Devices.md: -------------------------------------------------------------------------------- 1 | # Searching for Public Querys: 2 | - https://www.exploit-db.com/google-hacking-database?category=13 3 | 4 | # Pi-Hole Admin Dashboard: 5 | - intitle:"Pi-hole-ip" inurl:admin 6 | 7 | # Cisco ASDM Devices: 8 | - inurl:/admin/public/asdm.jnlp "ASDM on" 9 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Search Queries/Google Dorks.md: -------------------------------------------------------------------------------- 1 | Google Hacking Database: https://www.exploit-db.com/google-hacking-database 2 | 3 | Do not forget to include icons, emojism or unicode charecters in your searchs depending on the subject. 4 | 5 | ## Searching for names: 6 | 7 | - "james king" site: 8 | - "james king" -"site:/jamesking" site: 9 | - "james" "king" -site: 10 | - intile:final.attendee.list OR inurl:final.attendee.list "james king" 11 | 12 | ## Searching for names in files: 13 | - inurl: filetype: "username, password, email" 14 | - inurl:resume :"james king" 15 | - intext:resume "james king" 16 | - allintext: "james king" 17 | 18 | # Searching for names in Github Code: 19 | - site https://github.com/orgs/*/people 20 | 21 | # Search for emails with passwords: 22 | 23 | - site:pastebin.com "*@gmail.com password" 24 | - site:pastebin.com "*@outlook.com password" 25 | - site:gitlab.* intext:password intext:@gmail.com | @yahoo.com | @hotmail.com 26 | 27 | # Searching for social media accounts 28 | 29 | - site:facebook.com "display name" 30 | - inurl:facebook.com "display name" 31 | - inurl:facebook.com inurl:username 32 | - inurl:facebook.com inurl:firstname inurl:secondname 33 | 34 | # Searching for telegram groups 35 | - site:t.me/joinchat 36 | - site:t.me/* 37 | - site:t.me 38 | - site:telegram.me 39 | 40 | # Searching for human resources 41 | - intitle: "index of" intext: human resources 42 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Search Queries/Hunting for ICS-SCADA Systems.md: -------------------------------------------------------------------------------- 1 | 2 | # Using Shodan Website Filters: 3 | 4 | 1. Search organization IP range: net:x.x.x.x/y 5 | 2. Search by organization name: org:”name” 6 | 3. Search by IP : x.x.x.x 7 | 4. Search by city: city:”name of city” 8 | 5. Search by webpage title: title:”text here” 9 | 6. Search for common remote access: port:"3389" 10 | 11 | # Common Ports for ICS SCADA Deveices 12 | 13 | ## Standard Protocol Ports 14 | 15 | The standard protocol ports table lists the ports for protocols that are considered industry standards and are used be multiple vendors. 16 | 17 | | Protocol | Ports | 18 | | ----------------------- | :------------------------------------: | 19 | | BACnet/IP | UDP/47808 | 20 | | DNP3 | TCP/20000, UDP/20000 | 21 | | EtherCAT | UDP/34980 | 22 | | Ethernet/IP | TCP/44818, UDP/2222, UDP/44818 | 23 | | FL-net | UDP/55000 to 55003 | 24 | | Foundation Fieldbus HSE | TCP/1089 to 1091, UDP/1089 to 1091 | 25 | | ICCP | TCP/102 | 26 | | Modbus TCP | TCP/502 | 27 | | OPC UA Binary | Vendor Application Specific | 28 | | OPC UA Discovery Server | TCP/4840 | 29 | | OPC UA XML | TCP/80, TCP/443 | 30 | | PROFINET | TCP/34962 to 34964, UDP/34962 to 34964 | 31 | | ROC PLus | TCP/UDP 4000 | 32 | 33 | ## Vendor Specific Ports 34 | 35 | The vendor specific ports tables lists ports that are used by only one or a small number of vendors. These protocols are usually unpublished and proprietary. 36 | 37 | | Vendor | Product or Protocol | Ports | 38 | | ---------------- | :-----------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | 39 | | ABB | Ranger 2003 | TCP/10307, TCP/10311, TCP/10364 to 10365, TCP/10407, TCP/10409 to 10410, TCP/10412, TCP/10414 to 10415, TCP/10428, TCP/10431 to 10432, TCP/10447, TCP/10449 to 10450, TCP/12316, TCP/12645, TCP/12647 to 12648, TCP/13722, TCP/13724, TCP/13782 to 13783, TCP/38589, TCP/38593, TCP/38600, TCP/38971, TCP/39129, TCP/39278 | 40 | | Emerson / Fisher | ROC Plus | TCP/UDP/4000 | 41 | | Foxboro/Invensys | Foxboro DCS FoxApi | TCP/UDP/55555 | 42 | | Foxboro/Invensys | Foxboro DCS AIMAPI | TCP/UDP/45678 | 43 | | Foxboro/Invensys | Foxboro DCS Informix | TCP/UDP/1541 | 44 | | Iconics | Genesis32 GenBroker (TCP) | TCP/18000 | 45 | | Johnson Controls | Metasys N1 | TCP/UDP/11001 | 46 | | Johnson Controls | Metasys BACNet | UDP/47808 | 47 | | OSIsoft | PI Server | TCP/5450 | 48 | | Siemens | Spectrum Power TG | TCP/50001 to 50016, TCP/50018 to 50020, UDP/50020 to 50021, TCP/50025 to 50028, TCP/50110 to 50111 | 49 | | SNC | GENe | TCP/38000 to 38001, TCP/38011 to 38012, TCP/38014 to 38015, TCP/38200, TCP/38210, TCP/38301, TCP/38400, TCP/38700, TCP/62900, TCP/62911, TCP/62924, TCP/62930, TCP/62938, TCP/62956 to 62957, TCP/62963, TCP/62981 to 62982, TCP/62985, TCP/62992, TCP/63012, TCP/63027 to 63036, TCP/63041, TCP/63075, TCP/63079, TCP/63082, TCP/63088, TCP/63094, TCP/65443 | 50 | | Telvent | OASyS DNA | UDP/5050 to 5051, TCP/5052, TCP/5065, TCP/12135 to 12137, TCP/56001 to 56099 | 51 | | OMRON | FINS communication protocol | TCP/UDP/9600 52 | 53 | ## All Control System Ports Sorted By Port Number 54 | 55 | The control system ports table combines the previous two tables and sorts the entries by port number. 56 | 57 | | Protocol | Ports | 58 | | ------------------ | :-----------------------------------: | 59 | | TCP/502 | Modbus TCP | 60 | | TCP/UDP/1089 | Foundation Fieldbus HSE | 61 | | TCP/UDP/1090 | Foundation Fieldbus HSE | 62 | | TCP/UDP/1091 | Foundation Fieldbus HSE | 63 | | TCP/UDP/1541 | Foxboro/Invensys Foxboro DCS Informix | 64 | | UDP/2222 | EtherNet/IP | 65 | | TCP/3480 | OPC UA Discovery Server | 66 | | TCP/UDP/4000 | Emerson/Fisher ROC Plus | 67 | | UDP/5050 to 5051 | Telvent OASyS DNA | 68 | | TCP/5052 | Telvent OASyS DNA | 69 | | TCP/5065 | Telvent OASyS DNA | 70 | | TCP/5450 | OSIsoft PI Server | 71 | | TCP/UDP/9600 | OMRON FINS protocol | 72 | | TCP/10307 | ABB Ranger 2003 | 73 | | TCP/10311 | ABB Ranger 2003 | 74 | | TCP/10364 to 10365 | ABB Ranger 2003 | 75 | | TCP/10407 | ABB Ranger 2003 | 76 | | TCP/10409 to 10410 | ABB Ranger 2003 | 77 | | TCP/10412 | ABB Ranger 2003 | 78 | | TCP/10414 to 10415 | ABB Ranger 2003 | 79 | | TCP/10428 | ABB Ranger 2003 | 80 | | TCP/10431 to 10432 | ABB Ranger 2003 | 81 | | TCP/10447 | ABB Ranger 2003 | 82 | | TCP/10449 to 10450 | ABB Ranger 2003 | 83 | | TCP/12316 | ABB Ranger 2003 | 84 | | TCP/12645 | ABB Ranger 2003 | 85 | | TCP/12647 to 12648 | ABB Ranger 2003 | 86 | | TCP/13722 | ABB Ranger 2003 | 87 | | TCP/UDP/11001 | Johnson Controls Metasys N1 | 88 | | TCP/12135 to 12137 | Telvent OASyS DNA | 89 | | TCP/13724 | ABB Ranger 2003 | 90 | | TCP/13782 to 13783 | ABB Ranger 2003 | 91 | | TCP/18000 | Iconic Genesis32 GenBroker (TCP) | 92 | | TCP/UDP/20000 | DNP3 | 93 | | TCP/UDP/34962 | PROFINET | 94 | | TCP/UDP/34963 | PROFINET | 95 | | TCP/UDP/34964 | PROFINET | 96 | | UDP/34980 | EtherCAT | 97 | | TCP/38589 | ABB Ranger 2003 | 98 | | TCP/38593 | ABB Ranger 2003 | 99 | | TCP/38000 to 38001 | SNC GENe | 100 | | TCP/38011 to 38012 | SNC GENe | 101 | | TCP/38014 to 38015 | SNC GENe | 102 | | TCP/38200 | SNC GENe | 103 | | TCP/38210 | SNC GENe | 104 | | TCP/38301 | SNC GENe | 105 | | TCP/38400 | SNC GENe | 106 | | TCP/38600 | ABB Ranger 2003 | 107 | | TCP/38700 | SNC GENe | 108 | | TCP/38971 | ABB Ranger 2003 | 109 | | TCP/39129 | ABB Ranger 2003 | 110 | | TCP/39278 | ABB Ranger 2003 | 111 | | TCP/UDP/44818 | EtherNet/IP | 112 | | TCP/UDP/45678 | Foxboro/Invensys Foxboro DCS AIMAPI | 113 | | UDP/47808 | BACnet/IP | 114 | | TCP/50001 to 50016 | Siemens Spectrum Power TG | 115 | | TCP/50018 to 50020 | Siemens Spectrum Power TG | 116 | | UDP/50020 to 50021 | Siemens Spectrum Power TG | 117 | | TCP/50025 to 50028 | Siemens Spectrum Power TG | 118 | | TCP/50110 to 50111 | Siemens Spectrum Power TG | 119 | | UDP/55000 to 55002 | FL-net Reception | 120 | | UDP/55003 | FL-net Transmission | 121 | | TCP/UDP/55555 | Foxboor/Invensys Foxboro DCS FoxAPI | 122 | | TCP/56001 to 56099 | Telvent OASyS DNA | 123 | | TCP/62900 | SNC GENe | 124 | | TCP/62911 | SNC GENe | 125 | | TCP/62924 | SNC GENe | 126 | | TCP/62930 | SNC GENe | 127 | | TCP/62938 | SNC GENe | 128 | | TCP/62956 to 62957 | SNC GENe | 129 | | TCP/62963 | SNC GENe | 130 | | TCP/62981 to 62982 | SNC GENe | 131 | | TCP/62985 | SNC GENe | 132 | | TCP/62992 | SNC GENe | 133 | | TCP/63012 | SNC GENe | 134 | | TCP/63027 to 63036 | SNC GENe | 135 | | TCP/63041 | SNC GENe | 136 | | TCP/63075 | SNC GENe | 137 | | TCP/63079 | SNC GENe | 138 | | TCP/63082 | SNC GENe | 139 | | TCP/63088 | SNC GENe | 140 | | TCP/63094 | SNC GENe | 141 | | TCP/65443 | SNC GENe | 142 | 143 | # Looking at Traffic Analysis: 144 | 145 | ## ICS/SCADA PCAP Samples: 146 | - https://github.com/ITI/ICS-Security-Tools/tree/master/pcaps 147 | 148 | ## Wireshark 149 | Always review the statistics. Check the following: 150 | - Endpoints 151 | - Protocols 152 | - Conversations 153 | 154 | 155 | # References: 156 | - https://www.linkedin.com/pulse/osint-tips-icsscada-assessment-strategy-ashwani-kumar 157 | - https://github.com/ITI/ICS-Security-Tools/blob/master/protocols/PORTS.md 158 | - https://www.offensiveosint.io/offensive-osint-s04-e03-tracking-internet-facing-industrial-control-system-devices-with-kamerka-lite/ 159 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/Aviation, Marine, and Space Intel.md: -------------------------------------------------------------------------------- 1 | # Aviation Sites 2 | Radarbox24 3 | - https://www.radarbox24.com/ 4 | Flight Radar 24: 5 | - https://www.flightradar24.com/ 6 | Flight Aware: 7 | - https://flightaware.com/ 8 | Live Air Traffic Comms: 9 | - https://www.liveatc.net/ 10 | ADS-B Exchange 11 | - https://www.adsbexchange.com/ 12 | ## International: 13 | Freedar (Tracking Military Aircraft in the UK): 14 | - https://radar.freedar.uk/VirtualRadar/desktop.html 15 | - https://military.freedar.uk/VirtualRadar/mobile.html 16 | ## Information for different types of planes: 17 | Airplane Tail Logo's 18 | - https://airlinetaillogos.wordpress.com/ 19 | Plane Spotters: 20 | - https://www.planespotters.net/ 21 | 22 | # Marine Sites 23 | Marine Traffic 24 | - https://www.marinetraffic.com/ 25 | 26 | # Space Sites 27 | Satellite Imagery: 28 | - https://www.mapchecking.com 29 | - https://www.phorio.com 30 | - https://earthexplorer.usgs.gov/ 31 | - https://apps.sentinel-hub.com/eo-browser/ 32 | 33 | 34 | Live Weather Satellite Imagery: 35 | - https://zoom.earth 36 | 37 | Satellites in low orbit: 38 | - https://platform.leolabs.space/visualization 39 | 40 | Software for Satellite Imagery: 41 | - Google Earth: https://www.google.com/earth/versions/ 42 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/Dark Web.md: -------------------------------------------------------------------------------- 1 | # Notes: 2 | 3 | Links on the TOR network will constantly change. 4 | 5 | # Finding the latest onion links: 6 | 7 | - https://thehiddenwiki.org/ 8 | - https://dark.fail/ 9 | - https://onionlandsearchengine.com/ 10 | 11 | # Search Engines 12 | Onion Live: https://onion.live/ 13 | Ahmia: http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion/ 14 | http://msydqstlz2kzerdg.onion 15 | Ahmia (Public Site): https://ahmia.fi/ 16 | Abiko: http://abikogailmonxlzl.onion 17 | Darksearch.io: http://darkschn4iw2hxvpv2vy2uoxwkvs2padb56t3h4wqztre6upoc5qwgid.onion 18 | Haystack: http://haystak5njsmn2hqkewecpaxetahtwhsbsa64jom2k22z5afxhnpxfid.onion/ 19 | http://haystakvxad7wbk5.onion 20 | Torch: http://torch4st4l57l2u2vr5wqwvwyueucvnrao4xajqr2klmcmicrv7ccaad.onion/ 21 | tor66: http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion/ 22 | OnionLand: http://3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion/ 23 | http://3bbaaaccczcbdddz.onion 24 | Kilos: http://mlyusr6htlxsyc7t2f4z53wdxh3win7q3qpxcrbam6jf3dmua7tnzuyd.onion/ 25 | Phobos: http://phobosxilamwcg75xt22id7aywkzol6q6rfl2flipcqoc4e4ahima5id.onion/ 26 | Recon: http://recon222tttn4ob7ujdhbn3s4gjre7netvzybuvbq2bcqwltkiqinhad.onion/ 27 | 28 | 29 | ## V2 Onion Links 30 | Quo: http://quosl6t6c64mnn7d.onion/ 31 | tor77: http://tor77orrbgejplwp.onion 32 | NotEvil: http://hss3uro2hsxfogfq.onion 33 | Searx: http://searx7gwtu5rh6wr.onion 34 | Sindbad: http://sinbad66644fr5lq.onion 35 | Caronte: http://carontevaha5x626.onion 36 | Dark Matter: http://dark23456yyx57ny.onion 37 | OnionSearch: http://5u56fjmxu63xcmbk.onion 38 | Gibberfish: http://o2jdk5mdsijm2b7l.onion 39 | Pickle: http://k65nsnwos76xfwsj.onion 40 | 41 | # Public Search Engines for Tor: 42 | - https://onion.live/ 43 | 44 | ## Monitoring for new search urls: 45 | 46 | - https://www.hunch.ly/darkweb-osint/ 47 | - http://jncyepk6zbnosf4p.onion/onions.html 48 | - http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion/fresh 49 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/OSINT Sitemaps.md: -------------------------------------------------------------------------------- 1 | ## Summary Overview: 2 | 3 | Each Link contains a dashboard or a set of tools that they recommend to use for OSINT. Although these lists may not be up to date from time to time they can come in handy depending on what you are looking for. 4 | 5 | # List of sites that collect OSINT Tools, Sites, and Resources: 6 | 7 | IntelTechniques Search Tools: https://inteltechniques.com/tools/index.html 8 | 9 | OSINT Tools Dashboard: https://start.me/p/7kxyy2/osint-tools-curated-by-lorand-bodo 10 | 11 | Terrorism Radicalisation Research Dashboard: https://start.me/p/OmExgb/terrorism-radicalisation-research-dashboard 12 | 13 | OSINT Techniques: https://www.osinttechniques.com/osint-tools.html 14 | 15 | OSINT Framework: https://osintframework.com/ 16 | 17 | NixIntel OSINT Resource List: https://start.me/p/rx6Qj8/nixintel-s-osint-resource-list 18 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/Search Engines.md: -------------------------------------------------------------------------------- 1 | # General Search Engines: 2 | 3 | - [Intel Techniques Search Engine Tool](https://inteltechniques.com/tools/Search.html) 4 | 5 | ### General Search Engines 6 | - [Google](https://www.google.com/) 7 | - [Bing](https://www.bing.com/) 8 | - [Yahoo!](http://www.yahoo.com/) 9 | - [Yandex](https://yandex.com/) 10 | 11 | 12 | ### Servers 13 | - [Shodan](https://shodan.io) - Search Engine for the Internet of Everything 14 | - [Criminal IP](https://www.criminalip.io/) 15 | - [Censys](https://censys.io/) 16 | - [Onyphe.io](https://www.onyphe.io/) 17 | - [ZoomEye](https://www.zoomeye.org/) 18 | - [GreyNoise](https://viz.greynoise.io/) 19 | - [Natlas](https://natlas.io/) 20 | - [FOFA](https://fofa.info/) 21 | - [criminalip.io](https://www.criminalip.io/) 22 | - [LeakIX](https://leakix.net/) 23 | - [Netlas](https://app.netlas.io/responses/) 24 | 25 | 26 | ### Public Files 27 | 28 | - [Archie](http://archie.icm.edu.pl/) - Search for files in Public FTP Servers 29 | - [Grayhatwarefare](https://buckets.grayhatwarfare.com/) - Search for files in public AWS S3 buckets 30 | 31 | 32 | ### Vulnerabilities 33 | - [NIST NVD](https://nvd.nist.gov/vuln/search) 34 | - [MITRE CVE](https://cve.mitre.org/cve/search_cve_list.html) 35 | - [Exploit-DB](https://www.exploit-db.com/) 36 | - [osv.dev](https://osv.dev/list) - Open Source Vulnerabilities 37 | - [Vulners.com](https://vulners.com/) 38 | - [security.snyk.io](https://security.snyk.io/) 39 | - [Rapid7 - DB](https://www.rapid7.com/db/) 40 | - [CVEDetails](https://www.cvedetails.com/) 41 | - [VulnIQ](https://vulniq.com/) 42 | - [SynapsInt](https://synapsint.com/) 43 | 44 | 45 | ### Exploits 46 | - [Exploit-DB](https://www.exploit-db.com/) 47 | - [Shodan Exploits](https://exploits.shodan.io/) 48 | - [Sploitus](https://sploitus.com/) 49 | - [Rapid7 - DB](https://www.rapid7.com/db/) 50 | 51 | 52 | ### Attack Surface 53 | - [FullHunt.io](https://fullhunt.io/) 54 | - [BinaryEdge](https://www.binaryedge.io/) 55 | - [RedHunt Labs](https://redhuntlabs.com/) 56 | - [SecurityTrails](https://securitytrails.com/) 57 | - [Binary Edge](https://app.binaryedge.io/login) 58 | 59 | ### Code Search Engines 60 | - [GitHub Code Search](https://cs.github.com/) 61 | - [grep.app](https://grep.app/) 62 | - [publicwww.com](https://publicwww.com/) 63 | - [SearchCode](https://searchcode.com/) 64 | - [NerdyData](https://www.nerdydata.com/) 65 | - [RepoSearch](http://codefinder.org/) 66 | 67 | 68 | ### Mail addresses 69 | - [Hunter.io](https://hunter.io/) 70 | - [PhoneBook](https://phonebook.cz/) 71 | - [IntelligenceX](https://intelx.io/) 72 | - [Reacher.email](https://reacher.email/) 73 | - [RocketReach](https://rocketreach.co/) 74 | - [email-format.com](https://www.email-format.com/) 75 | - [EmailHippo](https://tools.emailhippo.com/) 76 | - [ThatsThem](https://thatsthem.com/reverse-email-lookup) - Reverse email lookup 77 | - [verify-email.org](https://verify-email.org/) 78 | - [Melissa - Emailcheck](https://www.melissa.com/v2/lookups/emailcheck/email/) 79 | - [VoilaNorbert](https://www.voilanorbert.com/) 80 | - [SynapsInt](https://synapsint.com/) 81 | - [skymem.info](http://www.skymem.info/) 82 | 83 | 84 | ### Domains 85 | - [PhoneBook](https://phonebook.cz/) 86 | - [IntelligenceX](https://intelx.io/) 87 | - [Omnisint](https://omnisint.io/subdomain-enumeration) - Subdomain enumeration 88 | - [Riddler](https://riddler.io/) 89 | - [RobTex](https://www.robtex.com/) 90 | - [CentralOps - DomainDossier](https://centralops.net/co/DomainDossier.aspx) 91 | - [DomainIQ](https://www.domainiq.com/) 92 | - [whois.domaintools.com](https://whois.domaintools.com/) 93 | - [grayhatwarfare.com - domains](https://shorteners.grayhatwarfare.com/domains) 94 | - [whoisology.com](https://whoisology.com/) 95 | - [who.is](https://who.is/) 96 | - [pentest-tools.com](https://pentest-tools.com/information-gathering/find-subdomains-of-domain) 97 | - [BuiltWith](https://builtwith.com/) 98 | - [MoonSearch](http://moonsearch.com/) 99 | - [sitereport.netcraft.com](https://sitereport.netcraft.com/) 100 | - [SynapsInt](https://synapsint.com/) 101 | - [statscrop.com](https://www.statscrop.com/) 102 | - [securityheaders.com](https://securityheaders.com/) 103 | - [visualsitemapper.com](http://www.visualsitemapper.com/) 104 | - [similarweb.com](https://www.similarweb.com/) 105 | - [buckets.grayhatwarfare.com](https://buckets.grayhatwarfare.com/) - Public buckets 106 | - [C99.nl](https://api.c99.nl/) 107 | 108 | 109 | ### URLs 110 | - [PhoneBook](https://phonebook.cz/) 111 | - [IntelligenceX](https://intelx.io/) 112 | - [URLScan](https://urlscan.io/) 113 | - [HackerTarget](https://hackertarget.com/ip-tools/) 114 | - [MOZ Link Explorer](https://moz.com/link-explorer) 115 | - [spyonweb.com](https://spyonweb.com/) 116 | - [shorteners.grayhatwarfare.com](https://shorteners.grayhatwarfare.com/) 117 | 118 | 119 | ### DNS 120 | - [DNSDumpster](https://dnsdumpster.com/) 121 | - [RapidDNS](https://rapiddns.io/) 122 | - [DNSdb](https://docs.farsightsecurity.com/#dnsdb) 123 | - [Omnisint](https://omnisint.io/reverse-dns-lookup) - Reverse DNS lookup 124 | - [HackerTarget](https://hackertarget.com/ip-tools/) 125 | - [passivedns.mnemonic.no](https://passivedns.mnemonic.no/) 126 | - [ptrarchive.com](http://ptrarchive.com/) 127 | - [dnshistory.org](http://dnshistory.org/) 128 | - [DNSTwister](https://dnstwister.report/) 129 | - [DNSviz](https://dnsviz.net/) 130 | - [C99.nl](https://api.c99.nl/) 131 | 132 | 133 | ### Certificates 134 | - [Crt.sh](https://crt.sh/) 135 | - [CTSearch](https://ui.ctsearch.entrust.com/ui/ctsearchui) 136 | - [TLS.BufferOver.run](https://tls.bufferover.run/) 137 | - [CertSpotter](https://sslmate.com/certspotter/) 138 | - [SynapsInt](https://synapsint.com/) 139 | - [Censys - Certificates](https://search.censys.io/certificates) 140 | 141 | 142 | ### WiFi networks 143 | - [Wigle.net](https://wigle.net/) 144 | 145 | 146 | ### Credentials 147 | - [Have I Been Pwned](https://haveibeenpwned.com/) 148 | - [Dehashed](https://www.dehashed.com/) 149 | - [Leak-Lookup](https://leak-lookup.com/) 150 | - [Snusbase](https://snusbase.com/) 151 | - [LeakCheck.io](https://leakcheck.io/) 152 | - [crackstation.net](https://crackstation.net/) 153 | - [breachdirectory.org](https://breachdirectory.org/) 154 | - [Intel Techniques Breach Tool](https://inteltechniques.com/tools/Breaches.html) 155 | 156 | ### Social Networks 157 | 158 | These can be useful for osint and social engineering. 159 | 160 | - [Facebook](https://www.facebook.com/) 161 | - [Intel Techniques Facebook Tool](https://inteltechniques.com/tools/Facebook.html) 162 | - [Instagram](https://www.instagram.com/) 163 | - [Intel Techniques Instagram Tool](https://inteltechniques.com/tools/Instagram.html) 164 | - [YouTube](https://www.youtube.com/) 165 | - [Twitter](https://twitter.com/) 166 | - [Intel Techniques Twitter Tool](https://inteltechniques.com/tools/Twitter.html) 167 | - [LinkedIn](https://www.linkedin.com/) 168 | - [Intel Techniques Linkedin Tool](https://inteltechniques.com/tools/Linkedin.html) 169 | - [Reddit](https://new.reddit.com/) 170 | - [Pinterest](https://www.pinterest.com/) 171 | - [Tumblr](https://www.tumblr.com/) 172 | - [Flickr](https://www.flickr.com/) 173 | - [SnapChat](https://www.snapchat.com/) 174 | - [Whatsapp](https://www.whatsapp.com/) 175 | - [Quora](https://www.quora.com/) 176 | - [TikTok](https://www.tiktok.com/) 177 | - [Vimeo](https://vimeo.com/) 178 | - [Medium](https://medium.com/) 179 | - [WeChat](https://www.wechat.com/) 180 | - [VK](https://vk.com/) 181 | - [Weibo](https://weibo.com/) 182 | - [Tinder](https://tinder.com/) 183 | - [WhatsMyName](https://whatsmyname.app/) 184 | 185 | ### Phone numbers 186 | - [RocketReach](https://rocketreach.co/) 187 | - [NumLookup](https://www.numlookup.com/) 188 | - [WhitePages](https://www.whitepages.com/) 189 | - [National Cellular Directory](https://www.nationalcellulardirectory.com/) 190 | - [Phone Validator](https://www.phonevalidator.com/) 191 | - [Free Carrier Lookup](https://freecarrierlookup.com/) 192 | - [sync.me](https://sync.me/) 193 | - [EmobileTracker](https://www.emobiletracker.com/) 194 | - [SpyDialer](https://spydialer.com/) 195 | - [Reverse Phone Lookup](https://www.reversephonelookup.com/) 196 | - [ThatsThem](https://thatsthem.com/reverse-phone-lookup) - Reverse phone lookup 197 | - [thisnumber.com](https://www.thisnumber.com/) 198 | - [usphonebook.com](https://www.usphonebook.com/) 199 | - [truecaller.com](https://www.truecaller.com/) 200 | - [truepeoplesearch.com](https://www.truepeoplesearch.com/#) 201 | - [SynapsInt](https://synapsint.com/) 202 | - [C99.nl](https://api.c99.nl/) 203 | 204 | 205 | ### Threat Intelligence 206 | - [PulseDive](https://pulsedive.com/) 207 | - [ThreatCrowd](https://threatcrowd.org/) 208 | - [ThreatMiner](https://www.threatminer.org/) 209 | - [VirusTotal](https://www.virustotal.com/) 210 | - [Rescure](https://rescure.me/) 211 | - [otx.alienvault](https://otx.alienvault.com/) 212 | - [urlquery.net](https://urlquery.net/) 213 | - [bazaar.abuse.ch](https://bazaar.abuse.ch/browse/) 214 | - [feodotracker.abuse.ch](https://feodotracker.abuse.ch/browse/) 215 | - [sslbl.abuse.ch](https://sslbl.abuse.ch/ssl-certificates/) 216 | - [urlhaus.abuse.ch](https://urlhaus.abuse.ch/browse/) 217 | - [threatfox.abuse.ch](https://threatfox.abuse.ch/browse/) 218 | - [hybrid-analysis](https://www.hybrid-analysis.com/) 219 | - [abuseipdb](https://www.abuseipdb.com/) 220 | 221 | 222 | ### Web History 223 | - [Web Archive](https://web.archive.org/) 224 | - [Archive.ph](https://archive.ph/) 225 | - [Archive.is](https://archive.is/) 226 | - [CachedPages](http://www.cachedpages.com/) 227 | - [stored.website](https://stored.website/) 228 | - [CommonCrawl](https://commoncrawl.org/) 229 | 230 | 231 | ### Uncategorized 232 | - [Spyse](https://spyse.com/) 233 | - [NetoGraph](https://netograph.io/) 234 | - [DNS.BufferOver.run](https://dns.bufferover.run/) 235 | - [Chaos](https://chaos.projectdiscovery.io/#/) 236 | - [PassiveTotal](https://api.passivetotal.org/) 237 | 238 | 239 | References: 240 | - https://osintframework.com/ 241 | - https://github.com/edoardottt/awesome-hacker-search-engines/blob/main/README.md 242 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/Uncovering Images.md: -------------------------------------------------------------------------------- 1 | # Reverse Image Search 2 | 3 | - https://images.google.com/ 4 | - https://www.bing.com/images/ 5 | - https://tineye.com/ 6 | - https://pimeyes.com/en 7 | - https://images.search.yahoo.com/ 8 | - https://www.gettyimages.com/ 9 | - https://www.shutterstock.com/ 10 | 11 | ## Face image search engines: 12 | 13 | - https://pimeyes.com/en 14 | 15 | ## EXIF Tools 16 | - https://exif.tools/ 17 | - https://exifdata.com/ 18 | - https://www.metadata2go.com/ 19 | - https://jimpl.com/ 20 | 21 | # EXIF Metadata Editors: 22 | - https://www.thexifer.net/ 23 | 24 | ## Checking for Deepfakes: 25 | - https://scanner.deepware.ai/ 26 | - https://detectfakes.media.mit.edu/# (Resource to learn how to detect deepfakes) 27 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/Vehicles.md: -------------------------------------------------------------------------------- 1 | ### License Plate Tools 2 | | Link | Description | 3 | | --- | --- | 4 | | [FindByPlate](https://findbyplate.com/) | search license plate information by number and state (US) | 5 | | [VehicleHistory.com Plate Search](https://www.vehiclehistory.com/license-plate-search) | search license plate information by number and state (US) | 6 | | [FaxVin (License Plate Search)](https://www.faxvin.com/license-plate-lookup) | search license plate information by number and state (US) | 7 | | [World License Plates](http://www.worldlicenseplates.com/) | database of license plate images by country/province | 8 | | [Platesmania](https://platesmania.com/) | international database containing nearly 1mil photos of license plates and their associated vehicles | 9 | | [License Plate Data](https://theinpaint.com/) | finds vehicle information from license plate number and state | 10 | | [Numberogram](https://play.google.com/store/apps/details?id=ru.drom.numbers&referrer=utm_source%3Dwebnomerogramfooter%26utm_medium%3Dfree%26utm_campaign%3Dbanner) | searches Russian license plate numbers | 11 | | [License Plate Map: Americas](https://www.reddit.com/r/MapPorn/comments/dc9s85/license_plates_of_the_americas/) | 2019 overhead map of license plates by state/country/province | 12 | | [License Plate Map: Europe](https://www.reddit.com/r/MapPorn/comments/d51jr0/car_plates_in_europe/ ) | 2019 overhead map of license plates in europe by country/province | 13 | | [License Plate Map: Asia](https://www.reddit.com/r/MapPorn/comments/d4ys24/license_plates_of_asia_map/) | 2019 overhead map of license plates in Asia | 14 | | [AutoTraveller](https://autotraveler.ru/en/spravka/vehicle-registration-codes-in-the-world.html#.Y3R6BnbMJPY) | description/images of license plates and registration display regulations based on country | 15 | | [Venicle Search](https://cipher387.github.io/venicle_number_search_toolbox/) | searches information related to venicle numbers in 14 different countries | 16 | | [NCSL](https://www.ncsl.org/research/transportation/license-plate-information.aspx) | summary of US license plate display regulations by state | 17 | | [Italy Insurance Control](https://www.ilportaledellautomobilista.it/web/portale-automobilista/verifica-copertura-rc) | controls insurance validity of vehicle with italian plate number, comprehensive of insurance authority and insurance end date 18 | | [Italy Emission Class](https://www.ilportaledellautomobilista.it/web/portale-automobilista/verifica-classe-ambientale-veicolo) | emission class of vehicle with italian plate number 19 | | [Italy Maintenance Control](https://www.ilportaledellautomobilista.it/web/portale-automobilista/verifica-ultima-revisione) | gives information about last government-forced check of car (4 years for new cars, after every 2 years), including km detected at time of check 20 | | [Finnik](https://finnik.nl/en) | searches for information related to license plates in various European countries | 21 | | [Netherlands License Plate Dataset](https://opendata.rdw.nl/Voertuigen/Open-Data-RDW-Gekentekende_voertuigen/m9d7-ebf2) | license plate dataset of 15 million Netherland license plates, including a mind-boggling amount of information related to them | 22 | | [Intel Technique's Search Tool](https://inteltechniques.com/tools/Vehicle.html) | searches for information related to license plates in US/Canada. This is part of an OSINT framework that also offers VIN searches and other tools | 23 | | [Vic Roads](https://www.vicroads.vic.gov.au/registration/buy-sell-or-transfer-a-vehicle/check-vehicle-registration/vehicle-registration-enquiry) | Victoria vehicle registry (AU)| 24 | | [SivAuto.fr](https://siv-auto.fr/index.php) | France license plates search tool | 25 | | [Queensland.gov](https://www.qld.gov.au/transport/terms-check-rego) | Queensland license plate registry | 26 | | [Samgongustafa](https://www.samgongustofa.is/umferd/okutaeki/okutaekjaskra/uppfletting?vq) | Iceland plate search registry | 27 | | [Autocode](https://avtocod.ru/) | Russian number plate search tool | 28 | | [Eteenindus](https://eteenindus.mnt.ee/public/soidukTaustakontroll.jsf) | Estonia plate registry | 29 | | [STKonline](https://stkonline.sk/spz) | Slovakia plate search tool | 30 | | [DigitalService.dk](https://digitalservicebog.dk/) | plate search for Denmark, Swedan, and Norway, including a few other countries | 31 | | [MTSBU](https://policy-web.mtsbu.ua/Search/Main/en) | Ukraine license plate search tool (use at own risk, site is safe as of 11//19/2022 but conflict may affect this) | 32 | | [Wisconsin License Plate Search](https://trust.dot.state.wi.us/pinq/PinqServlet?whoami=pinqp1) | Offical Wisconsin search tool for license plates | 33 | | [First Check](https://www.firstcheck.co.za/) | South Africa number plate search tool | 34 | | [Federal Road Safety Corps](https://nvis.frsc.gov.ng/VehicleManagement/VerifyPlateNo) | Nigeria license plate search tool | 35 | | [Doubango](https://www.doubango.org/webapps/alpr-korea/) | South Korea plate recognition tool | 36 | | [Itarga](https://apps.apple.com/it/app/itarga-verify-license-plate/id1222570860?l=en) | Italy plate search tool for iOS | 37 | | [Costco](https://tires.costco.com/) | shows make/model of vehicle from VIN/plate | 38 | | [Plate Recognizer](https://platerecognizer.com/) | license plate decoder | 39 | | [AutoCheck](https://www.autocheck.com/vehiclehistory/autocheck-score) | offical Experian plate/vin search tool, scores results based on number of owners, mileage, age, and other info | 40 | | [egov.kz](https://egov.kz/cms/ru/articles/vehicle/grnz) | kazakhstan plate regulations and information | 41 | | [Kaggle](https://www.kaggle.com/datasets/elmehditaf96/moroccan-vehicle-registration-plates) | Morocco license plate dataset | 42 | | [HowsMyDrivingNY](https://howsmydrivingny.nyc/k36e7jzm) | violation search tool for NYC | 43 | | [Colorado.gov](https://secure.colorado.gov/apps/dps/mvvs/public/entry.jsf) | Colorado vehicle verification system | 44 | | [DC.gov](https://prodpci.etimspayments.com/pbw/include/dc_parking/input.jsp?ticketType=P) | Washington DC violation verification | 45 | | [ct.gov](https://dmvcivls-wselfservice.ct.gov/Registration/VerifyRegistration) | Connecticut vehicle verification | 46 | | [Honolulu Motor Vehicle Inquiry](https://mvinquiry.hnl.info/title) | Hawaii vehicle verification | 47 | | [Idaho.gov](https://www.accessidaho.org/itd/driver/registration/status) | Idaho vehicle verification | 48 | 49 | ### VIN Tools 50 | | Link | Description | 51 | | --- | --- | 52 | | [FaxVin (Vin Search)](https://www.faxvin.com/) | finds information related to VIN number with VIN check and VIN decoder | 53 | | [VehicleHistory.com VIN Search](https://www.vehiclehistory.com/) | finds information and history related to VIN number | 54 | | [Vindecoderz](https://www.vindecoderz.com/) | free VIN decoder | 55 | | [Bimmwer.work](https://bimmer.work/) | bmw specific VIN decoder with full optional list 56 | | [Ford Vin Search](https://www.fordvinlookup.com/)| Ford VIN decoder | 57 | | [Chevrolet Vin Search](https://chevroletforum.com/forum/vindecoder.php)| Chevy VIN decoder | 58 | | [Hyundai Vin Search](https://www.hyundaiforum.com/forum/vindecoder.php)| Hyuandai VIN decoder | 59 | | [Nissan Vin Search](https://www.nissanusa.com/recalls-vin.html)| Nissan VIN decoder | 60 | | [Cadillac Vin Search](https://www.cadillacforum.com/forum/vindecoder.php)| Caddillac VIN decoder | 61 | | [Dodge Vin Search](https://dodgeforum.com/forum/vindecoder.php)| Dodge VIN decode | 62 | | [Toyota Vin Search](https://www.toyota.com/owners/my-vehicle/vehicle-specification.html)| Toyota VIN decoder | 63 | | [Audi Vin Search](https://www.audiworld.com/forums/vindecoder.php)| Audi VIN decoder | 64 | | [Honda Vin Search](https://estore.honda.com/honda/parts/use-your-vehicle-vin.asp)| Honda VIN decoder | 65 | | [Yamaha Vin Search](https://vinpit.com/vin-decoder/yamaha)| Yamaha VIN decoder | 66 | | [Kawasaki Vin Search](https://vinpit.com/vin-decoder/kawasaki) | Kawasaki VIN decoder | 67 | | [Scion Vin Search](https://www.scionlife.com/forums/vindecoder.php) | Scion VIN decoder | 68 | | [National Highway Safety Administration](https://www.nhtsa.gov/vin-decoder) | NHTSA VIN decoder | 69 | | [GM Vin Search](https://www.gmforum.com/vindecoder.php) | General Motors VIN decoder | 70 | | [Oregon Semi-Truck Search](https://www.oregontruckingonline.com/cf/MCAD/pubMetaEntry/carrierInfoByVeh/) | Oregon semi-truck database | 71 | | [BigRig](https://bigrigvin.com/) | Big-rig (Semi-trucks and large commercial vehicles) vin decoder/search | 72 | 73 | ### Drivers License Tools 74 | | Link | Description | 75 | | --- | --- | 76 | | [DL # Calculator](http://www.highprogrammer.com/cgi-bin/uniqueid/dl_fl) | calculates DL numbers in 9 states based on first/MI/last, gender, and DOB based on the states method of DL # calculation. | 77 | | [Enterprise](https://www.enterprise.com/en/reserve/receipts.html?icid=header.reservations.car.rental-_-receipt-_-ENUS.NULL) | finds reciepts using last name/DL number combo | 78 | | [Hertz](https://www.hertz.com/rentacar/receipts/request-receipts.do) | finds reciepts using last name/DL number combo | 79 | 80 | ### Map/Street View Tools 81 | | Link | Description | 82 | | --- | --- | 83 | | [Show My Street](https://showmystreet.com/) | simplifies google street view and maps with one straightforward interface | 84 | | [Mapillary](https://www.mapillary.com/app/) | overview map of street panoramas around the world | 85 | | [WebcamTaxi](https://www.webcamtaxi.com/en/webcams.html) | livestreams web/security cameras around the world, including interactive map of camera locations | 86 | | [EarthCam](https://www.earthcam.com/) | live webcam network with cameras around the world | 87 | | [WorldCam.eu](https://worldcam.eu/) | live webcam network with cameras around the world | 88 | | [Magonolialinkworld](https://www.mangolinkworld.com/) | live webcam network with cameras around the world | 89 | | [WorldCams](https://worldcams.tv/) | live webcam network with cameras around the world | 90 | | [Google Map Scraper](https://console.apify.com/actors/nwua9Gu5YrADL7ZDj) | scrapes addresses, phone numbers, etc from google map data | 91 | | [Cipher's Public Transport Maps](https://cipher387.github.io/public_transport_maps/) | 20 public transport maps around the world | 92 | | [Open Aerial Map](https://map.openaerialmap.org/#/-18.45703125,18.47960905583197,3?_k=3dgcbd) | overhead aerial view of locations around the world | 93 | | [ArcGis](https://www.arcgis.com/apps/View/index.html?appid=b3a7a2930b974773ba28968710fec0d3) | map of semi-truck routes in US | 94 | | [Bureau of Transportation](https://www.bts.gov/product/geospatial-application-and-map-gallery) | Bureau of Transportation public maps | 95 | | [Transport for London](https://tfl.gov.uk/maps/bus) | London bus map | 96 | | [TransitMap](https://transitmap.net/) | current and past international transit map archives | 97 | 98 | ### Other Useful Tools 99 | | Link | Description | 100 | | --- | --- | 101 | | [Cipher's OSINT Map](https://cipher387.github.io/osintmap/) | Cipher's interactive map of useful online public/registry services by location and other great tools | 102 | | [iHunt](https://nitinpandey.in/ihunt/) | OSINT Framework | 103 | | [Check License Plates](https://www.icloud.com/shortcuts/1e500ea210244b62a35bd28912797a86) | iphone/ipad shortcut for searching plates based on country, state, or region | 104 | | [CarInfo](https://apps.apple.com/in/app/car-info-vehicle-registration/id1146173741) | India license plate search for macOS/iOS | 105 | | [BGToll](https://check.bgtoll.bg/#/) | vignette check for EU, Russia, and Asia and Middle East | 106 | | [PaperswithCode](https://paperswithcode.com/datasets?q=license+plates&v=lst&o=match&mod=images&page=1) | international license plate datasets with collections of images | 107 | | [NMVTIS](https://vehiclehistory.bja.ojp.gov/nmvtis_vehiclehistory#w7o24a) | NMVTIS approved data providers | 108 | 109 | ### Additional Resources/Notes 110 | - Local police impound registries (county, state, or province) 111 | - Local online ticket/citation portals (county, state, or province) 112 | - Certain tow companies may have searchable registries on their websites 113 | - VINCHECKINFO's Reddit [thread](https://www.reddit.com/r/LICENSEPLATES/comments/bm3djr/dmv_license_plate_lookup/) on states with public registry tools 114 | - For additional tools, [cipher387](https://github.com/cipher387) has an incredible collection of 1000+ tools [here](https://github.com/cipher387/osint_stuff_tool_collection) 115 | - CyberopsIntel's [article](https://www.cyberoneintel.com/post/back-to-the-basics-with-asset-tracing) on semi-truck OSINT 116 | 117 | Orginal Source: https://github.com/TheBurnsy/Vehicle-OSINT-Collection 118 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sites/cryptocurrency.md: -------------------------------------------------------------------------------- 1 | # Crypto Market: 2 | 3 | - https://coinmarketcap.com/ 4 | - https://www.coinbase.com/explore 5 | - https://www.binance.com/en/markets 6 | 7 | # Bitcoin 8 | ### Wallet Transaction Analysis 9 | - https://www.walletexplorer.com/ 10 | - https://bitref.com/ 11 | ### Blockhain Transaction Analysis 12 | - https://www.blockchain.com/explorer 13 | - https://blockexplorer.com/ 14 | - https://live.blockcypher.com/ 15 | 16 | ### Tracking Bitcoin Addresses: 17 | - https://intelx.io/ 18 | - https://oxt.me/ 19 | - https://www.bitcoinwhoswho.com/ 20 | 21 | # Etherium 22 | ### Blockhain Transaction Analysis 23 | - https://etherscan.io/ 24 | - https://www.etherchain.org/ 25 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Sock Accounts/General Notes.md: -------------------------------------------------------------------------------- 1 | # This is a placeholder to keep a track of the sock accounts you have created and have burned. 2 | 3 | 4 | ## Resources to help create your sock accounts: 5 | Profile Image Maker: 6 | 7 | - https://thispersondoesnotexist.com/ 8 | - https://fakenamegenerator.com 9 | - https://en.namefake.com/ 10 | - https://www.fakepersongenerator.com/fake-name-generator 11 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/Breach Tools.md: -------------------------------------------------------------------------------- 1 | ### PwnedOrNot (https://github.com/thewhiteh4t/pwnedOrNot) 2 | Installation: 3 | ``` 4 | Must make a payment to get a haveibeenpwned API key 5 | Obtain an API Key: https://haveibeenpwned.com/API/Key 6 | haveibeenpwned API v3 Documentation: https://haveibeenpwned.com/API/v3 7 | 8 | git clone https://github.com/thewhiteh4t/pwnedOrNot.git 9 | cd pwnedOrNot 10 | chmod +x install.sh 11 | ./install.sh 12 | ``` 13 | 14 | Using pwnedornot: 15 | Checking for a Single Email 16 | - python3 pwnedornot.py -e 17 | - python3 pwnedornot.py --email 18 | 19 | Check Multiple Emails from File 20 | - python3 pwnedornot.py -f 21 | - python3 pwnedornot.py --file 22 | 23 | Filter Result for a Domain Name [Ex : adobe.com] 24 | - python3 pwnedornot.py -e -d 25 | - python3 pwnedornot.py -f --domain 26 | 27 | Get only Breach Info, Skip Password Dumps 28 | - python3 pwnedornot.py -e -n 29 | - python3 pwnedornot.py -f --nodumps 30 | 31 | Get List of all Breached Domains 32 | -python3 pwnedornot.py -l 33 | - python3 pwnedornot.py --list 34 | 35 | Check if a Domain is Pwned 36 | - python3 pwnedornot.py -c 37 | - python3 pwnedornot.py --check 38 | 39 | ### pwned (https://github.com/wKovacs64/pwned) 40 | 41 | Installation: 42 | ``` 43 | Kali Linux: 44 | apt install nodejs 45 | apt install npm 46 | npm install pwned -g 47 | ``` 48 | 49 | Using Pwned: 50 | Adding your haveibeenpwned API key 51 | - pwned apikey 52 | Obtain all breaches for an account 53 | - pwned ba 54 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/Browser Exstensions.md: -------------------------------------------------------------------------------- 1 | # Joplin Web Clipper 2 | 3 | The web clipper that allows you to clip web pages and take screenshots while you're browsing the internet. You can either save complete web pages or simplified versions of it. 4 | 5 | To install Joplin's Web Clipper you need to run through the following setup. 6 | 1. In Joplin select "Tools" > Options 7 | 2. Go to the Web Clipper tab and follow the instructions to install the web clipper exstention for Google Chrome or Firefox. 8 | 9 | # Google Chrome, Brave, Opera, and Microsoft Edge 10 | 11 | ## Note: All of these exstensions can be installed in these browsers because they are built off the same underlying technology as Google Chrome. 12 | 13 | Better History: https://chrome.google.com/webstore/detail/better-history/ 14 | 15 | Instant Data Scraper: https://chrome.google.com/webstore/detail/instant-data-scraper/ 16 | 17 | Map Switcher: https://chrome.google.com/webstore/detail/map-switcher/ 18 | 19 | Privacy Badger: https://privacybadger.org/ 20 | 21 | RevEye Reverse Image Search: https://chrome.google.com/webstore/detail/reveye-reverse-image-sear/ 22 | 23 | Session Buddy: https://chrome.google.com/webstore/detail/session-buddy 24 | 25 | Search by Image: https://chrome.google.com/webstore/detail/search-by-image/ 26 | 27 | U-Block Orgin: https://ublockorigin.com/ 28 | 29 | UnPaywall: https://chrome.google.com/webstore/detail/unpaywall/ 30 | 31 | User-Agent-Switcher: https://chrome.google.com/webstore/detail/user-agent-switcher-for-c/ 32 | 33 | Vortimo: https://chrome.google.com/webstore/detail/vortimo-osint-tool/ 34 | 35 | Wayback Machine: https://chrome.google.com/webstore/detail/wayback-machine/ 36 | 37 | Wappalyzer: https://chrome.google.com/webstore/detail/wappalyzer-technology-pro/ 38 | 39 | # Firefox: 40 | 41 | Wayback Machine: https://addons.mozilla.org/es/firefox/addon/wayback-machine_new/?target=_blank&rel=nofollow,noopener,noreferrer&target=_blank 42 | 43 | Exif Viewer: https://addons.mozilla.org/es/firefox/addon/exif-viewer/?target=_blank&rel=nofollow,noopener,noreferrer&target=_blank 44 | 45 | Sputnik: https://addons.mozilla.org/es/firefox/addon/sputnik-osint/ 46 | 47 | User Agent Switcher: https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher-revived/ 48 | 49 | Link Gopher: https://addons.mozilla.org/en-GB/firefox/addon/link-gopher/ 50 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/Dark Web.md: -------------------------------------------------------------------------------- 1 | # Setup and Initialization: 2 | 3 | ## In Kali Linux 4 | ``` 5 | # Commands to Install tor and the tor browser 6 | sudo apt install tor 7 | sudo apt install tor-browser 8 | 9 | # Running the tor browser 10 | Command Line: Open the terminal and type tor-browser 11 | 12 | A new window will appear loading the tor browser 13 | ``` 14 | 15 | Configuring 16 | 17 | ## Browsers: 18 | Brave: https://brave.com/ 19 | I2P: https://geti2p.net/en/ 20 | Tor Broswer: https://www.torproject.org 21 | Whonix: https://www.whonix.org/ 22 | Zeronet: https://zeronet.io/ 23 | 24 | 25 | # Dark Web Scanners: 26 | 27 | Katana: https://github.com/TebbaaX/Katana 28 | 29 | Installation: 30 | ``` 31 | git clone https://github.com/TebbaaX/Katana 32 | cd Katana 33 | python3 -m pip install -r requirements.txt 34 | python3 kds.py 35 | ``` 36 | 37 | Onion Search: https://github.com/megadose/OnionSearch 38 | ``` 39 | git clone https://github.com/megadose/OnionSearch 40 | cd onionseach 41 | python3 setup.py install 42 | onionsearch 43 | ``` 44 | 45 | Darkdump: https://github.com/josh0xA/darkdump 46 | Note: Darksearch.io now forbids public queries so this tool may not work 47 | 48 | ``` 49 | git clone https://github.com/josh0xA/darkdump 50 | cd darkdump 51 | python3 -m pip install -r requirements.txt 52 | python3 darkdump.py --help 53 | ``` 54 | 55 | # Other tools to crawl the TOR network 56 | - https://github.com/DedSecInside/TorBot 57 | 58 | # Commands to verify if onion links are active: 59 | Note: You will needed to be connected or proxied into the tor network to check if the site. 60 | nmap: 61 | ``` 62 | nmap -sT -PN -n -p 80,443 facebookcorewwwi.onion 63 | 64 | proxychains4 -f /etc/proxychains.conf /usr/bin/nmap -sT -PN -n -p 80,443 facebookcorewwwi.onion 65 | ``` 66 | curl: 67 | ``` 68 | curl -I https://facebookcorewwwi.onion 69 | ``` 70 | netcat (nc): 71 | ``` 72 | nc -z 80 facebookcorewwwi.onion 73 | nc -z 443 facebookcorewwwi.onion 74 | ``` 75 | 76 | # Resources: 77 | Installing Tor on Kali Linux: https://www.kali.org/docs/tools/tor/ 78 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/ICS-SCADA.md: -------------------------------------------------------------------------------- 1 | # Kamerka GUI 2 | - https://github.com/woj-ciech/Kamerka-GUI 3 | 4 | ## Setup and Installation: 5 | 6 | ``` 7 | sudo apt install redis redis-server 8 | git clone https://github.com/woj-ciech/Kamerka-GUI/ 9 | pip3 install -r requirements.txt 10 | python3 manage.py makemigrations 11 | python3 manage.py migrate 12 | python3 manage.py runserver 13 | ``` 14 | 15 | 1. Execute this command in the main directory: ```celery worker -A kamerka --loglevel=info``` 16 | 2. Intialize Celery: ```celery --app kamerka worker``` 17 | 3. Karmerka should be running by going to the following URL: http://localhost:8000/ 18 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/Image Tools.md: -------------------------------------------------------------------------------- 1 | # Tools to analyze EXIF metadata: 2 | AnalogEXIF: https://sourceforge.net/projects/analogexif/ 3 | ExifTool: https://exiftool.org/ 4 | ExifTOOLGUI: https://exiftool.org/gui/ 5 | Exif Pilot: https://www.colorpilot.com/exif.html 6 | ExifManager: https://sourceforge.net/projects/exifmanager/ 7 | Geosetter: https://geosetter.de/download-en/ 8 | Metadata++: https://www.logipole.com/metadata++-en.htm 9 | 10 | # Tools that can remove EXIF metadata 11 | EXIF Purge: http://www.exifpurge.com/ 12 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/OSINT Framework Tools.md: -------------------------------------------------------------------------------- 1 | # OSIF 2 | 3 | ## Installation: 4 | ``` 5 | git clone https://github.com/fr4nc1stein/osint-framework osif 6 | cd osif 7 | pip3 install -r requirements.txt 8 | ``` 9 | 10 | Create an enviornment file (.env) and include your API keys: 11 | ``` 12 | VT_API="" 13 | CENSYS_APPID="" 14 | CENSYS_SECRET="" 15 | ABUSECH_API_KEY = "" 16 | SHODAN_API_KEY = "" 17 | HUNTER_API_KEY = "" 18 | BITCOINABUSE_API_KEY = "" 19 | WIGLE_API_NAME = "" 20 | WIGLE_API_TOKEN = "" 21 | SECURITY_TRAIL_API = "" 22 | ``` 23 | 24 | ## Executing the program: 25 | 26 | ``` 27 | python3 ./osif 28 | ``` 29 | 30 | # Recon-NG 31 | 32 | ## Installation: 33 | Already installed in Kali Linux 34 | 35 | ## Loading the program and installing modules: 36 | ``` 37 | $ recon-ng 38 | [*] Version check disabled. 39 | 40 | _/_/_/ _/_/_/_/ _/_/_/ _/_/_/ _/ _/ _/ _/ _/_/_/ 41 | _/ _/ _/ _/ _/ _/ _/_/ _/ _/_/ _/ _/ 42 | _/_/_/ _/_/_/ _/ _/ _/ _/ _/ _/ _/_/_/_/ _/ _/ _/ _/ _/_/_/ 43 | _/ _/ _/ _/ _/ _/ _/ _/_/ _/ _/_/ _/ _/ 44 | _/ _/ _/_/_/_/ _/_/_/ _/_/_/ _/ _/ _/ _/ _/_/_/ 45 | 46 | 47 | /\ 48 | / \\ /\ 49 | Sponsored by... /\ /\/ \\V \/\ 50 | / \\/ // \\\\\ \\ \/\ 51 | // // BLACK HILLS \/ \\ 52 | www.blackhillsinfosec.com 53 | 54 | ____ ____ ____ ____ _____ _ ____ ____ ____ 55 | |____] | ___/ |____| | | | |____ |____ | 56 | | | \_ | | |____ | | ____| |____ |____ 57 | www.practisec.com 58 | 59 | [recon-ng v5.1.2, Tim Tomes (@lanmaster53)] 60 | 61 | [recon-ng][default] > marketplace search 62 | 63 | +---------------------------------------------------------------------------------------------------+ 64 | | Path | Version | Status | Updated | D | K | 65 | +---------------------------------------------------------------------------------------------------+ 66 | | discovery/info_disclosure/cache_snoop | 1.1 | not installed | 2020-10-13 | | | 67 | | discovery/info_disclosure/interesting_files | 1.2 | not installed | 2021-10-04 | | | 68 | | exploitation/injection/command_injector | 1.0 | not installed | 2019-06-24 | | | 69 | | exploitation/injection/xpath_bruter | 1.2 | not installed | 2019-10-08 | | | 70 | | import/csv_file | 1.1 | not installed | 2019-08-09 | | | 71 | | import/list | 1.1 | not installed | 2019-06-24 | | | 72 | | import/masscan | 1.0 | not installed | 2020-04-07 | | | 73 | | import/nmap | 1.1 | not installed | 2020-10-06 | | | 74 | | recon/companies-contacts/bing_linkedin_cache | 1.0 | not installed | 2019-06-24 | | * | 75 | | recon/companies-contacts/censys_email_address | 2.0 | not installed | 2021-05-11 | * | * | 76 | | recon/companies-contacts/pen | 1.1 | not installed | 2019-10-15 | | | 77 | | recon/companies-domains/censys_subdomains | 2.0 | not installed | 2021-05-10 | * | * | 78 | 79 | [recon-ng][default] > marketplace install recon/companies-domains/viewdns_reverse_whois 80 | [*] Module installed: recon/companies-domains/viewdns_reverse_whois 81 | [*] Reloading modules... 82 | ``` 83 | 84 | ## Using the module and setting the options: 85 | ``` 86 | [recon-ng][default] > modules load recon/companies-domains/viewdns_reverse_whois 87 | [recon-ng][default][viewdns_reverse_whois] > options list 88 | 89 | Name Current Value Required Description 90 | ------ ------------- -------- ----------- 91 | SOURCE default yes source of input (see 'info' for details) 92 | 93 | [recon-ng][default][viewdns_reverse_whois] > options set source google.com 94 | SOURCE => google.com 95 | [recon-ng][default][viewdns_reverse_whois] > run 96 | 97 | ``` 98 | -------------------------------------------------------------------------------- /Raw Markdown/Resources/Tools/Social Media Scrapers.md: -------------------------------------------------------------------------------- 1 | # Instagram: 2 | 3 | ## Instaloader 4 | - https://github.com/instaloader/instaloader 5 | 6 | ## Installation 7 | In Kali Linux: ```sudo apt install instaloader``` 8 | 9 | ## Toutatis: 10 | - https://github.com/megadose/toutatis 11 | 12 | ## Installation: 13 | ``` 14 | git clone https://github.com/megadose/toutatis.git 15 | cd toutatis/ 16 | python3 setup.py install 17 | ``` 18 | 19 | Usage: 20 | - toutatis -u username -s instagramsessionid 21 | 22 | # Masto 23 | - https://github.com/C3n7ral051nt4g3ncy/Masto 24 | 25 | ## Installation 26 | ``` 27 | git clone https://github.com/C3n7ral051nt4g3ncy/Masto 28 | pip3 install -r requirements.txt 29 | ``` 30 | 31 | ## Using Masto 32 | - python3 masto.py -u {username} 33 | - python3 masto.py -i {instance} 34 | -------------------------------------------------------------------------------- /Raw Markdown/What Is Intelligence What is OSINT.md: -------------------------------------------------------------------------------- 1 | # What Is Intelligence? What is OSINT? 2 | 3 | Intelligence is the asset generated by collecting and analyzing data, then forming that analysis in to an actionable output, such as a report. Well-formed intelligence products can aid with predicting future actions by understanding past behaviors, help determine appropriate courses of action for attacking or defending objectives (such as critical infrastructure), or even help improve situational awareness around macro-level industry or economic trends in a business. 4 | 5 | Open-Source Intelligence (OSINT) refers to intelligence data gathered from public sources, and has quickly become one of the most important elements of intelligence programs for entities ranging from the Intelligence and Defense communities, to law enforcement, to businesses, and even journalists and hobbyist researchers. Common sources for OSINT collection include social media, video sharing platforms like YouTube and Vimeo, blog and news websites both the clear and dark web. 6 | 7 | Understanding the Intelligence Cycle is key to a successful investigation, whether you are working exclusively with open sources, or you’re analyzing classified government intelligence. The Intelligence Cycle consists of five phases, and is a looping process where findings and feedback from each iteration can be used to help feed the planning and direction that goes into the next round of investigations. The five phases of the Intelligence Cycle are: 8 | 9 | - **Planning and Direction:** Begin your investigation by understanding the need for data and defining specific requirements for intelligence collection and analysis, as well as identifying the scope of sources to be used for the investigation. If this is a continuation of an investigation based on past findings, leverage the previous finished intelligence product(s) from that investigation and the feedback from the intelligence consumers to drive your next steps. 10 | - **Collection:** Gather the raw information that you need to produce your finished intelligence product. Information should be collected from all sources which are in-scope for the investigation, even if the information does not appear relevant at first. 11 | - **Processing and Exploitation:** Convert the information you’ve collected into usable data. This can include decryption and decoding efforts, translation, data deduplication, reformatting data, and even conducting follow-up collection efforts to expand your dataset based on previously unknown selectors (search terms). 12 | - **Analysis and Production:** This phase involves analyzing all the intelligence collected, and potentially intelligence gathered during previous efforts, to build your finished intelligence product (e.g., your intelligence report). 13 | - **Dissemination:** Finished intelligence products should be distributed to the intended consumers of your intelligence product, so that the intelligence can be reviewed and actioned if necessary. Feedback and actions on the finished intelligence products can be used to fuel future iterations of the intelligence cycle for this case, or for future casework. 14 | 15 | Intelligence can be a game changer, whether you’re looking to investigate a missing person’s case, looking to understand business and marketplace competition, assess vendor and supply chain risk, or even for planning a penetration test or red team engagement. Leveraging the Intelligence Cycle, along with this notebook and other tools at your disposal, can help you be successful in generating finished intelligence for your investigations, projects, and organizations. 16 | 17 | # Further Reading 18 | - The Threat Intelligence Lifecycle: https://www.recordedfuture.com/threat-intelligence-lifecycle 19 | - Five Phashes of the Threat Intelligence Lifecycle: https://flashpoint.io/blog/threat-intelligence-lifecycle/ 20 | - Threat Intelligence Lifecycle | Phases & Best Practices Explained: https://snyk.io/learn/threat-intelligence/threat-intelligence-lifecycle/ 21 | - Open-Source Intelligence (OSINT) Cycle: https://securityorb.com/featured/the-open-source-intelligence-osint-cycle/ 22 | 23 | 24 | -------------------------------------------------------------------------------- /TJ-OSINT-Notebook-v1.jex: -------------------------------------------------------------------------------- 1 | 082562ba794843dbb2a6307b8c983101.md000644 0000002271 14336061324012304 0ustar00000000 000000 Dark Web 2 | 3 | # General Notes 4 | - https://github.com/fastfire/deepdarkCTI 5 | - https://www.osintcombine.com/post/dark-web-searching 6 | 7 | # Sub Reddits 8 | - https://www.reddit.com/r/darknet/ 9 | - https://www.reddit.com/r/TOR/ 10 | - https://www.reddit.com/r/onions/ 11 | - https://reddit.com/r/DarkWebDread 12 | 13 | # News/Information Sites 14 | - Darknetlive: https://darknetlive.com/ 15 | - Darknet stats: https://www.darknetstats.com/ 16 | - DNStats: https://dnstats.net/ 17 | - The Daily Swig: https://portswigger.net/daily-swig/dark-web 18 | - DarknetOne: https://darknetone.com/ 19 | - DarknetMarkets: https://www.darknetmarkets.com/ 20 | 21 | 22 | 23 | 24 | id: 082562ba794843dbb2a6307b8c983101 25 | parent_id: 66ad12d80e514ed2858f35c2c5ad0d0e 26 | created_time: 2022-06-27T15:26:17.224Z 27 | updated_time: 2022-06-27T19:28:29.458Z 28 | is_conflict: 0 29 | latitude: 34.74648090 30 | longitude: -92.28959480 31 | altitude: 0.0000 32 | author: 33 | source_url: 34 | is_todo: 0 35 | todo_due: 0 36 | todo_completed: 0 37 | source: joplin-desktop 38 | source_application: net.cozic.joplin-desktop 39 | application_data: 40 | order: 1665859587635 41 | user_created_time: 2022-06-27T15:26:17.224Z 42 | user_updated_time: 2022-06-27T19:28:29.458Z 43 | encryption_cipher_text: 44 | encryption_applied: 0 45 | markup_language: 1 46 | is_shared: 0 47 | share_id: 48 | conflict_original_id: 49 | master_key_id: 50 | type_: 108ccf2a382e1431f8fc8aef81bf7f3a7.md000644 0000002513 14336061324013036 0ustar00000000 000000 Other Resources 51 | 52 | ## Places to learn more about OSINT 53 | - https://www.overtoperator.com/s/daily-intel-brief 54 | - https://www.maltego.com/blog/top-osint-infosec-resources-for-you-and-your-team/ 55 | 56 | ## Image-Based OSINT Investigations Tips & Techniques: 57 | - https://www.skopenow.com/resource-center/image-based-osint-investigations-tips-techniques 58 | 59 | ## Telegram 60 | - Telegram OSINT References: https://github.com/Ginsberg5150/Discord-and-Telegram-OSINT-references 61 | 62 | ## Books 63 | - Open Source Intelligence Techniques: https://inteltechniques.com/book1.html 64 | - Open Source Intelligence Handbook: https://i-intelligence.eu/uploads/public-documents/OSINT_Handbook_2020.pdf 65 | - Nowhere To Hide: https://www.danielfarberhuang.com/nowheretohidedownload 66 | 67 | id: 08ccf2a382e1431f8fc8aef81bf7f3a7 68 | parent_id: 66ad12d80e514ed2858f35c2c5ad0d0e 69 | created_time: 2022-09-12T04:26:44.027Z 70 | updated_time: 2022-11-18T08:07:44.283Z 71 | is_conflict: 0 72 | latitude: 0.00000000 73 | longitude: 0.00000000 74 | altitude: 0.0000 75 | author: 76 | source_url: 77 | is_todo: 0 78 | todo_due: 0 79 | todo_completed: 0 80 | source: joplin-desktop 81 | source_application: net.cozic.joplin-desktop 82 | application_data: 83 | order: 829829100801.25 84 | user_created_time: 2022-09-12T04:26:44.027Z 85 | user_updated_time: 2022-11-18T08:07:44.283Z 86 | encryption_cipher_text: 87 | encryption_applied: 0 88 | markup_language: 1 89 | is_shared: 0 90 | share_id: 91 | conflict_original_id: 92 | master_key_id: 93 | type_: 113ca7acfa30342c4a3271ebd5398e833.md000644 0000004155 14336061324012576 0ustar00000000 000000 Main Template 94 | 95 | # Template Breakdown 96 | 97 | # Summary Overview 98 | 99 | Describe the case of this subject and why they are a interest to your assignment? 100 | 101 | # Personal Information: 102 | 103 | - Full Name: 104 | - Alias Names/Handles: 105 | - Age: 106 | - Address: 107 | - Height/Weight: 108 | - Gender: 109 | - Birth Date: 110 | - Single/Married: 111 | - Forms of Identification: 112 | - Vehicle Information (Make, Year, Color, License): 113 | 114 | # Social Media: 115 | 116 | - Facebook: 117 | - Twitter: 118 | - Instagram: 119 | - Vysco: 120 | - Snapchat: 121 | - TikTok: 122 | - Tumblr: 123 | - PinInterest: 124 | - Telegram: 125 | - Signal: 126 | - Vk: 127 | - Reddit: 128 | - Craiglist: 129 | - Kijiji: 130 | - ebay: 131 | - wechat: 132 | - kik: 133 | 134 | # Other accounts/handles: 135 | - Gamer Handles: 136 | - Blog Posts: 137 | - Forum profiles: 138 | 139 | # Work/Careers: 140 | 141 | - Linkedin: 142 | - Company Name: 143 | - Job Description: 144 | - Start/End Date: 145 | - Work Email: 146 | - Work Phone Number: 147 | - Work Address: 148 | 149 | - Interesting comments from employees: 150 | 151 | # Home/Place of Living: 152 | - Address: 153 | - Noticeable Habits: 154 | 155 | ## Owns the Home/Place: 156 | - Information/Tips from the neighbors: 157 | - Any Issues in the area? 158 | 159 | ## Lives in a rental place: 160 | 161 | - Landlords Name: 162 | - Landlords Phone Number: 163 | - Information/Tips from other tenants: 164 | - Any Issues in the Area? 165 | 166 | # Other Information about the Person: 167 | - Unique Identifiers (Tattos, scars, piercings/jewlery): 168 | - Habits (Smoking, Drinking, Hitch Hiking, Hangouts, Gang Affliation): 169 | - Tips/Other information where the subject may be headed: 170 | - History of the person missing in the past: 171 | 172 | # Technical Information/Devices: 173 | - Device: 174 | - Brand/Modfel: 175 | - Carrier: 176 | - ISP: 177 | - IP Addresses: 178 | - Accounts involved in a breach: 179 | 180 | id: 13ca7acfa30342c4a3271ebd5398e833 181 | parent_id: e6223dc485394d7db5c0d870fa13fd63 182 | created_time: 2020-12-06T03:19:20.263Z 183 | updated_time: 2022-11-18T05:37:36.947Z 184 | is_conflict: 0 185 | latitude: 0.00000000 186 | longitude: 0.00000000 187 | altitude: 0.0000 188 | author: 189 | source_url: 190 | is_todo: 0 191 | todo_due: 0 192 | todo_completed: 0 193 | source: joplin-desktop 194 | source_application: net.cozic.joplin-desktop 195 | application_data: 196 | order: 1641090699181 197 | user_created_time: 2020-12-06T03:19:20.263Z 198 | user_updated_time: 2022-11-18T05:37:36.947Z 199 | encryption_cipher_text: 200 | encryption_applied: 0 201 | markup_language: 1 202 | is_shared: 0 203 | share_id: 204 | conflict_original_id: 205 | master_key_id: 206 | type_: 116ac71d2552744ce9b56bb5cce16f2dd.md000644 0000022360 14336061324012747 0ustar00000000 000000 Search Engines 207 | 208 | # General Search Engines: 209 | 210 | - [Intel Techniques Search Engine Tool](https://inteltechniques.com/tools/Search.html) 211 | 212 | ### General Search Engines 213 | - [Google](https://www.google.com/) 214 | - [Bing](https://www.bing.com/) 215 | - [Yahoo!](http://www.yahoo.com/) 216 | - [Yandex](https://yandex.com/) 217 | 218 | 219 | ### Servers 220 | - [Shodan](https://shodan.io) - Search Engine for the Internet of Everything 221 | - [Criminal IP](https://www.criminalip.io/) 222 | - [Censys](https://censys.io/) 223 | - [Onyphe.io](https://www.onyphe.io/) 224 | - [ZoomEye](https://www.zoomeye.org/) 225 | - [GreyNoise](https://viz.greynoise.io/) 226 | - [Natlas](https://natlas.io/) 227 | - [FOFA](https://fofa.info/) 228 | - [criminalip.io](https://www.criminalip.io/) 229 | - [LeakIX](https://leakix.net/) 230 | - [Netlas](https://app.netlas.io/responses/) 231 | 232 | 233 | ### Public Files 234 | 235 | - [Archie](http://archie.icm.edu.pl/) - Search for files in Public FTP Servers 236 | - [Grayhatwarefare](https://buckets.grayhatwarfare.com/) - Search for files in public AWS S3 buckets 237 | 238 | 239 | ### Vulnerabilities 240 | - [NIST NVD](https://nvd.nist.gov/vuln/search) 241 | - [MITRE CVE](https://cve.mitre.org/cve/search_cve_list.html) 242 | - [Exploit-DB](https://www.exploit-db.com/) 243 | - [osv.dev](https://osv.dev/list) - Open Source Vulnerabilities 244 | - [Vulners.com](https://vulners.com/) 245 | - [security.snyk.io](https://security.snyk.io/) 246 | - [Rapid7 - DB](https://www.rapid7.com/db/) 247 | - [CVEDetails](https://www.cvedetails.com/) 248 | - [VulnIQ](https://vulniq.com/) 249 | - [SynapsInt](https://synapsint.com/) 250 | 251 | 252 | ### Exploits 253 | - [Exploit-DB](https://www.exploit-db.com/) 254 | - [Shodan Exploits](https://exploits.shodan.io/) 255 | - [Sploitus](https://sploitus.com/) 256 | - [Rapid7 - DB](https://www.rapid7.com/db/) 257 | 258 | 259 | ### Attack Surface 260 | - [FullHunt.io](https://fullhunt.io/) 261 | - [BinaryEdge](https://www.binaryedge.io/) 262 | - [RedHunt Labs](https://redhuntlabs.com/) 263 | - [SecurityTrails](https://securitytrails.com/) 264 | - [Binary Edge](https://app.binaryedge.io/login) 265 | 266 | ### Code Search Engines 267 | - [GitHub Code Search](https://cs.github.com/) 268 | - [grep.app](https://grep.app/) 269 | - [publicwww.com](https://publicwww.com/) 270 | - [SearchCode](https://searchcode.com/) 271 | - [NerdyData](https://www.nerdydata.com/) 272 | - [RepoSearch](http://codefinder.org/) 273 | 274 | 275 | ### Mail addresses 276 | - [Hunter.io](https://hunter.io/) 277 | - [PhoneBook](https://phonebook.cz/) 278 | - [IntelligenceX](https://intelx.io/) 279 | - [Reacher.email](https://reacher.email/) 280 | - [RocketReach](https://rocketreach.co/) 281 | - [email-format.com](https://www.email-format.com/) 282 | - [EmailHippo](https://tools.emailhippo.com/) 283 | - [ThatsThem](https://thatsthem.com/reverse-email-lookup) - Reverse email lookup 284 | - [verify-email.org](https://verify-email.org/) 285 | - [Melissa - Emailcheck](https://www.melissa.com/v2/lookups/emailcheck/email/) 286 | - [VoilaNorbert](https://www.voilanorbert.com/) 287 | - [SynapsInt](https://synapsint.com/) 288 | - [skymem.info](http://www.skymem.info/) 289 | 290 | 291 | ### Domains 292 | - [PhoneBook](https://phonebook.cz/) 293 | - [IntelligenceX](https://intelx.io/) 294 | - [Omnisint](https://omnisint.io/subdomain-enumeration) - Subdomain enumeration 295 | - [Riddler](https://riddler.io/) 296 | - [RobTex](https://www.robtex.com/) 297 | - [CentralOps - DomainDossier](https://centralops.net/co/DomainDossier.aspx) 298 | - [DomainIQ](https://www.domainiq.com/) 299 | - [whois.domaintools.com](https://whois.domaintools.com/) 300 | - [grayhatwarfare.com - domains](https://shorteners.grayhatwarfare.com/domains) 301 | - [whoisology.com](https://whoisology.com/) 302 | - [who.is](https://who.is/) 303 | - [pentest-tools.com](https://pentest-tools.com/information-gathering/find-subdomains-of-domain) 304 | - [BuiltWith](https://builtwith.com/) 305 | - [MoonSearch](http://moonsearch.com/) 306 | - [sitereport.netcraft.com](https://sitereport.netcraft.com/) 307 | - [SynapsInt](https://synapsint.com/) 308 | - [statscrop.com](https://www.statscrop.com/) 309 | - [securityheaders.com](https://securityheaders.com/) 310 | - [visualsitemapper.com](http://www.visualsitemapper.com/) 311 | - [similarweb.com](https://www.similarweb.com/) 312 | - [buckets.grayhatwarfare.com](https://buckets.grayhatwarfare.com/) - Public buckets 313 | - [C99.nl](https://api.c99.nl/) 314 | 315 | 316 | ### URLs 317 | - [PhoneBook](https://phonebook.cz/) 318 | - [IntelligenceX](https://intelx.io/) 319 | - [URLScan](https://urlscan.io/) 320 | - [HackerTarget](https://hackertarget.com/ip-tools/) 321 | - [MOZ Link Explorer](https://moz.com/link-explorer) 322 | - [spyonweb.com](https://spyonweb.com/) 323 | - [shorteners.grayhatwarfare.com](https://shorteners.grayhatwarfare.com/) 324 | 325 | 326 | ### DNS 327 | - [DNSDumpster](https://dnsdumpster.com/) 328 | - [RapidDNS](https://rapiddns.io/) 329 | - [DNSdb](https://docs.farsightsecurity.com/#dnsdb) 330 | - [Omnisint](https://omnisint.io/reverse-dns-lookup) - Reverse DNS lookup 331 | - [HackerTarget](https://hackertarget.com/ip-tools/) 332 | - [passivedns.mnemonic.no](https://passivedns.mnemonic.no/) 333 | - [ptrarchive.com](http://ptrarchive.com/) 334 | - [dnshistory.org](http://dnshistory.org/) 335 | - [DNSTwister](https://dnstwister.report/) 336 | - [DNSviz](https://dnsviz.net/) 337 | - [C99.nl](https://api.c99.nl/) 338 | 339 | 340 | ### Certificates 341 | - [Crt.sh](https://crt.sh/) 342 | - [CTSearch](https://ui.ctsearch.entrust.com/ui/ctsearchui) 343 | - [TLS.BufferOver.run](https://tls.bufferover.run/) 344 | - [CertSpotter](https://sslmate.com/certspotter/) 345 | - [SynapsInt](https://synapsint.com/) 346 | - [Censys - Certificates](https://search.censys.io/certificates) 347 | 348 | 349 | ### WiFi networks 350 | - [Wigle.net](https://wigle.net/) 351 | 352 | 353 | ### Credentials 354 | - [Have I Been Pwned](https://haveibeenpwned.com/) 355 | - [Dehashed](https://www.dehashed.com/) 356 | - [Leak-Lookup](https://leak-lookup.com/) 357 | - [Snusbase](https://snusbase.com/) 358 | - [LeakCheck.io](https://leakcheck.io/) 359 | - [crackstation.net](https://crackstation.net/) 360 | - [breachdirectory.org](https://breachdirectory.org/) 361 | - [Intel Techniques Breach Tool](https://inteltechniques.com/tools/Breaches.html) 362 | 363 | ### Social Networks 364 | 365 | These can be useful for osint and social engineering. 366 | 367 | - [Facebook](https://www.facebook.com/) 368 | - [Intel Techniques Facebook Tool](https://inteltechniques.com/tools/Facebook.html) 369 | - [Instagram](https://www.instagram.com/) 370 | - [Intel Techniques Instagram Tool](https://inteltechniques.com/tools/Instagram.html) 371 | - [YouTube](https://www.youtube.com/) 372 | - [Twitter](https://twitter.com/) 373 | - [Intel Techniques Twitter Tool](https://inteltechniques.com/tools/Twitter.html) 374 | - [LinkedIn](https://www.linkedin.com/) 375 | - [Intel Techniques Linkedin Tool](https://inteltechniques.com/tools/Linkedin.html) 376 | - [Reddit](https://new.reddit.com/) 377 | - [Pinterest](https://www.pinterest.com/) 378 | - [Tumblr](https://www.tumblr.com/) 379 | - [Flickr](https://www.flickr.com/) 380 | - [SnapChat](https://www.snapchat.com/) 381 | - [Whatsapp](https://www.whatsapp.com/) 382 | - [Quora](https://www.quora.com/) 383 | - [TikTok](https://www.tiktok.com/) 384 | - [Vimeo](https://vimeo.com/) 385 | - [Medium](https://medium.com/) 386 | - [WeChat](https://www.wechat.com/) 387 | - [VK](https://vk.com/) 388 | - [Weibo](https://weibo.com/) 389 | - [Tinder](https://tinder.com/) 390 | - [WhatsMyName](https://whatsmyname.app/) 391 | 392 | ### Phone numbers 393 | - [RocketReach](https://rocketreach.co/) 394 | - [NumLookup](https://www.numlookup.com/) 395 | - [WhitePages](https://www.whitepages.com/) 396 | - [National Cellular Directory](https://www.nationalcellulardirectory.com/) 397 | - [Phone Validator](https://www.phonevalidator.com/) 398 | - [Free Carrier Lookup](https://freecarrierlookup.com/) 399 | - [sync.me](https://sync.me/) 400 | - [EmobileTracker](https://www.emobiletracker.com/) 401 | - [SpyDialer](https://spydialer.com/) 402 | - [Reverse Phone Lookup](https://www.reversephonelookup.com/) 403 | - [ThatsThem](https://thatsthem.com/reverse-phone-lookup) - Reverse phone lookup 404 | - [thisnumber.com](https://www.thisnumber.com/) 405 | - [usphonebook.com](https://www.usphonebook.com/) 406 | - [truecaller.com](https://www.truecaller.com/) 407 | - [truepeoplesearch.com](https://www.truepeoplesearch.com/#) 408 | - [SynapsInt](https://synapsint.com/) 409 | - [C99.nl](https://api.c99.nl/) 410 | 411 | 412 | ### Threat Intelligence 413 | - [PulseDive](https://pulsedive.com/) 414 | - [ThreatCrowd](https://threatcrowd.org/) 415 | - [ThreatMiner](https://www.threatminer.org/) 416 | - [VirusTotal](https://www.virustotal.com/) 417 | - [Rescure](https://rescure.me/) 418 | - [otx.alienvault](https://otx.alienvault.com/) 419 | - [urlquery.net](https://urlquery.net/) 420 | - [bazaar.abuse.ch](https://bazaar.abuse.ch/browse/) 421 | - [feodotracker.abuse.ch](https://feodotracker.abuse.ch/browse/) 422 | - [sslbl.abuse.ch](https://sslbl.abuse.ch/ssl-certificates/) 423 | - [urlhaus.abuse.ch](https://urlhaus.abuse.ch/browse/) 424 | - [threatfox.abuse.ch](https://threatfox.abuse.ch/browse/) 425 | 426 | 427 | ### Web History 428 | - [Web Archive](https://web.archive.org/) 429 | - [Archive.ph](https://archive.ph/) 430 | - [Archive.is](https://archive.is/) 431 | - [CachedPages](http://www.cachedpages.com/) 432 | - [stored.website](https://stored.website/) 433 | - [CommonCrawl](https://commoncrawl.org/) 434 | 435 | 436 | ### Uncategorized 437 | - [Spyse](https://spyse.com/) 438 | - [NetoGraph](https://netograph.io/) 439 | - [DNS.BufferOver.run](https://dns.bufferover.run/) 440 | - [Chaos](https://chaos.projectdiscovery.io/#/) 441 | - [PassiveTotal](https://api.passivetotal.org/) 442 | 443 | 444 | References: 445 | - https://osintframework.com/ 446 | - https://github.com/edoardottt/awesome-hacker-search-engines/blob/main/README.md 447 | 448 | id: 16ac71d2552744ce9b56bb5cce16f2dd 449 | parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58 450 | created_time: 2022-06-27T14:21:51.901Z 451 | updated_time: 2022-09-12T18:04:37.204Z 452 | is_conflict: 0 453 | latitude: 34.74648090 454 | longitude: -92.28959480 455 | altitude: 0.0000 456 | author: 457 | source_url: 458 | is_todo: 0 459 | todo_due: 0 460 | todo_completed: 0 461 | source: joplin-desktop 462 | source_application: net.cozic.joplin-desktop 463 | application_data: 464 | order: 1656339711901 465 | user_created_time: 2022-06-27T14:21:51.901Z 466 | user_updated_time: 2022-09-12T18:04:37.204Z 467 | encryption_cipher_text: 468 | encryption_applied: 0 469 | markup_language: 1 470 | is_shared: 0 471 | share_id: 472 | conflict_original_id: 473 | master_key_id: 474 | type_: 12e0cd2b39e5f49ef98c086209a048875.md000644 0000004241 14336061324012474 0ustar00000000 000000 Main Template 475 | 476 | # Template Breakdown: 477 | 478 | # Summary Overview 479 | - Summary about the company. 480 | 481 | # Leadership: 482 | 483 | ## List out the directors/leaders that operate the company: 484 | 485 | (copy and paste the bullets if multiple people are identified) 486 | - Name: 487 | - Role: 488 | - Email: 489 | - Phone Number: 490 | - Address: 491 | - Executives/Leadership: 492 | - Employees that work under them: 493 | - Social Media: 494 | 495 | # Corporate Locations: 496 | 497 | ## Headquarters: 498 | - 499 | 500 | ## Offices/Facilities of Interest: 501 | - 502 | 503 | # Social Media Precensce: 504 | 505 | ## List company social media presences that the company uses: 506 | - 507 | 508 | # Job postings: 509 | 510 | ## List the current job postings that the company is offering that could show a value of interest: 511 | - 512 | 513 | # Companies technical systems/assets: 514 | 515 | ## List systems that are found publicly that may be operated/managed by the company: 516 | 517 | - Citrix Remote Access: 518 | - SSL/VPN Gateways: 519 | - Email Gateways (Office 365, Hosted Exchange, Gmail): 520 | - Identity Providers (Azure, GSuite): 521 | - External Identity: 522 | - External User Access Portals: 523 | - Public Websites: 524 | - IP Addressing: 525 | - Cloud Providers: 526 | - Hosting Providers: 527 | - SAAS Systems: 528 | 529 | # Recent cases of the company being involved in certain incidents: 530 | 531 | ## General Incidents: 532 | - 533 | 534 | ## Technical Incidents 535 | - 536 | 537 | # Relevant People of Interest: 538 | 539 | ## List people that could be of interest to the case 540 | - 541 | 542 | # Third Party Suppliers/Supply Chain Companies: 543 | 544 | ## Main Subsidaries: 545 | - 546 | 547 | # Other Related Companies: 548 | - 549 | 550 | ## Competitors: 551 | - 552 | 553 | # Analyst notes: 554 | 555 | ## Sensitive data or documents found through public websites or dark web/breaches: 556 | 557 | ## Email addresses found through search engines: 558 | 559 | 560 | ## Leaked Credentials: 561 | 562 | id: 2e0cd2b39e5f49ef98c086209a048875 563 | parent_id: 96cd33181ac446419b2cbefec51c0739 564 | created_time: 2020-12-04T01:22:38.806Z 565 | updated_time: 2022-11-18T05:22:30.020Z 566 | is_conflict: 0 567 | latitude: 0.00000000 568 | longitude: 0.00000000 569 | altitude: 0.0000 570 | author: 571 | source_url: 572 | is_todo: 0 573 | todo_due: 0 574 | todo_completed: 0 575 | source: joplin-desktop 576 | source_application: net.cozic.joplin-desktop 577 | application_data: 578 | order: 1627530699569 579 | user_created_time: 2020-12-04T01:22:38.806Z 580 | user_updated_time: 2022-11-18T05:22:30.020Z 581 | encryption_cipher_text: 582 | encryption_applied: 0 583 | markup_language: 1 584 | is_shared: 0 585 | share_id: 586 | conflict_original_id: 587 | master_key_id: 588 | type_: 133fa54146da947f68099687eb461a0eb.md000644 0000004632 14336061324012473 0ustar00000000 000000 Dark Web 589 | 590 | # Notes: 591 | 592 | Links on the TOR network will constantly change. 593 | 594 | # Finding the latest onion links: 595 | 596 | - https://thehiddenwiki.org/ 597 | - https://dark.fail/ 598 | - https://onionlandsearchengine.com/ 599 | 600 | # Search Engines 601 | Onion Live: https://onion.live/ 602 | Ahmia: http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion/ 603 | http://msydqstlz2kzerdg.onion 604 | Ahmia (Public Site): https://ahmia.fi/ 605 | Abiko: http://abikogailmonxlzl.onion 606 | Darksearch.io: http://darkschn4iw2hxvpv2vy2uoxwkvs2padb56t3h4wqztre6upoc5qwgid.onion 607 | Haystack: http://haystak5njsmn2hqkewecpaxetahtwhsbsa64jom2k22z5afxhnpxfid.onion/ 608 | http://haystakvxad7wbk5.onion 609 | Torch: http://torch4st4l57l2u2vr5wqwvwyueucvnrao4xajqr2klmcmicrv7ccaad.onion/ 610 | tor66: http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion/ 611 | OnionLand: http://3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion/ 612 | http://3bbaaaccczcbdddz.onion 613 | Kilos: http://mlyusr6htlxsyc7t2f4z53wdxh3win7q3qpxcrbam6jf3dmua7tnzuyd.onion/ 614 | Phobos: http://phobosxilamwcg75xt22id7aywkzol6q6rfl2flipcqoc4e4ahima5id.onion/ 615 | Recon: http://recon222tttn4ob7ujdhbn3s4gjre7netvzybuvbq2bcqwltkiqinhad.onion/ 616 | 617 | 618 | ## V2 Onion Links 619 | Quo: http://quosl6t6c64mnn7d.onion/ 620 | tor77: http://tor77orrbgejplwp.onion 621 | NotEvil: http://hss3uro2hsxfogfq.onion 622 | Searx: http://searx7gwtu5rh6wr.onion 623 | Sindbad: http://sinbad66644fr5lq.onion 624 | Caronte: http://carontevaha5x626.onion 625 | Dark Matter: http://dark23456yyx57ny.onion 626 | OnionSearch: http://5u56fjmxu63xcmbk.onion 627 | Gibberfish: http://o2jdk5mdsijm2b7l.onion 628 | Pickle: http://k65nsnwos76xfwsj.onion 629 | 630 | # Public Search Engines for Tor: 631 | - https://onion.live/ 632 | 633 | ## Monitoring for new search urls: 634 | 635 | - https://www.hunch.ly/darkweb-osint/ 636 | - http://jncyepk6zbnosf4p.onion/onions.html 637 | - http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion/fresh 638 | 639 | 640 | 641 | 642 | 643 | id: 33fa54146da947f68099687eb461a0eb 644 | parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58 645 | created_time: 2022-06-27T14:57:57.357Z 646 | updated_time: 2022-11-19T04:35:01.875Z 647 | is_conflict: 0 648 | latitude: 34.74648090 649 | longitude: -92.28959480 650 | altitude: 0.0000 651 | author: 652 | source_url: 653 | is_todo: 0 654 | todo_due: 0 655 | todo_completed: 0 656 | source: joplin-desktop 657 | source_application: net.cozic.joplin-desktop 658 | application_data: 659 | order: 1656355744887 660 | user_created_time: 2022-06-27T14:57:57.357Z 661 | user_updated_time: 2022-11-19T04:35:01.875Z 662 | encryption_cipher_text: 663 | encryption_applied: 0 664 | markup_language: 1 665 | is_shared: 0 666 | share_id: 667 | conflict_original_id: 668 | master_key_id: 669 | type_: 13a4d05e63db04fc4b76cc7e4903625fe.md000644 0000000554 14336061324012672 0ustar00000000 000000 Sock Accounts 670 | 671 | id: 3a4d05e63db04fc4b76cc7e4903625fe 672 | created_time: 2021-07-27T03:55:41.611Z 673 | updated_time: 2022-11-12T22:34:29.656Z 674 | user_created_time: 2021-07-27T03:55:41.611Z 675 | user_updated_time: 2021-07-27T03:55:41.611Z 676 | encryption_cipher_text: 677 | encryption_applied: 0 678 | parent_id: 90987d9954be415d89fe7cc093c5f8c9 679 | is_shared: 0 680 | share_id: 681 | master_key_id: 682 | icon: 683 | type_: 23a5cb99f707b4a0fb90fe277c98ea4d2.md000644 0000001671 14336061324012767 0ustar00000000 000000 Searching the Internet 684 | 685 | # Site References 686 | - Mastering Google Search Operators: https://www.moz.com/mastering-google-search-operators-in-67-steps 687 | 688 | # Talks 689 | - https://www.blackhat.com/presentations/bh-europe-05/BH_EU_05-Long.pdf 690 | 691 | # Books: 692 | - https://www.amazon.com/Google-Hacking-Penetration-Testers-Johnny/dp/1597491764 693 | 694 | 695 | 696 | id: 3a5cb99f707b4a0fb90fe277c98ea4d2 697 | parent_id: 66ad12d80e514ed2858f35c2c5ad0d0e 698 | created_time: 2020-12-07T04:52:07.607Z 699 | updated_time: 2022-11-18T07:48:32.051Z 700 | is_conflict: 0 701 | latitude: 0.00000000 702 | longitude: 0.00000000 703 | altitude: 0.0000 704 | author: 705 | source_url: 706 | is_todo: 0 707 | todo_due: 0 708 | todo_completed: 0 709 | source: joplin-desktop 710 | source_application: net.cozic.joplin-desktop 711 | application_data: 712 | order: 1659658201602.5 713 | user_created_time: 2020-12-07T04:52:07.607Z 714 | user_updated_time: 2022-11-18T07:48:32.051Z 715 | encryption_cipher_text: 716 | encryption_applied: 0 717 | markup_language: 1 718 | is_shared: 0 719 | share_id: 720 | conflict_original_id: 721 | master_key_id: 722 | type_: 13bbd231305eb471ab904aa9b9d324124.md000644 0000033724 14336061324012506 0ustar00000000 000000 Hunting for ICS/SCADA Systems 723 | 724 | 725 | # Using Shodan Website Filters: 726 | 727 | 1. Search organization IP range: net:x.x.x.x/y 728 | 2. Search by organization name: org:”name” 729 | 3. Search by IP : x.x.x.x 730 | 4. Search by city: city:”name of city” 731 | 5. Search by webpage title: title:”text here” 732 | 6. Search for common remote access: port:"3389" 733 | 734 | # Common Ports for ICS SCADA Deveices 735 | 736 | ## Standard Protocol Ports 737 | 738 | The standard protocol ports table lists the ports for protocols that are considered industry standards and are used be multiple vendors. 739 | 740 | | Protocol | Ports | 741 | | ----------------------- | :------------------------------------: | 742 | | BACnet/IP | UDP/47808 | 743 | | DNP3 | TCP/20000, UDP/20000 | 744 | | EtherCAT | UDP/34980 | 745 | | Ethernet/IP | TCP/44818, UDP/2222, UDP/44818 | 746 | | FL-net | UDP/55000 to 55003 | 747 | | Foundation Fieldbus HSE | TCP/1089 to 1091, UDP/1089 to 1091 | 748 | | ICCP | TCP/102 | 749 | | Modbus TCP | TCP/502 | 750 | | OPC UA Binary | Vendor Application Specific | 751 | | OPC UA Discovery Server | TCP/4840 | 752 | | OPC UA XML | TCP/80, TCP/443 | 753 | | PROFINET | TCP/34962 to 34964, UDP/34962 to 34964 | 754 | | ROC PLus | TCP/UDP 4000 | 755 | 756 | ## Vendor Specific Ports 757 | 758 | The vendor specific ports tables lists ports that are used by only one or a small number of vendors. These protocols are usually unpublished and proprietary. 759 | 760 | | Vendor | Product or Protocol | Ports | 761 | | ---------------- | :-----------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | 762 | | ABB | Ranger 2003 | TCP/10307, TCP/10311, TCP/10364 to 10365, TCP/10407, TCP/10409 to 10410, TCP/10412, TCP/10414 to 10415, TCP/10428, TCP/10431 to 10432, TCP/10447, TCP/10449 to 10450, TCP/12316, TCP/12645, TCP/12647 to 12648, TCP/13722, TCP/13724, TCP/13782 to 13783, TCP/38589, TCP/38593, TCP/38600, TCP/38971, TCP/39129, TCP/39278 | 763 | | Emerson / Fisher | ROC Plus | TCP/UDP/4000 | 764 | | Foxboro/Invensys | Foxboro DCS FoxApi | TCP/UDP/55555 | 765 | | Foxboro/Invensys | Foxboro DCS AIMAPI | TCP/UDP/45678 | 766 | | Foxboro/Invensys | Foxboro DCS Informix | TCP/UDP/1541 | 767 | | Iconics | Genesis32 GenBroker (TCP) | TCP/18000 | 768 | | Johnson Controls | Metasys N1 | TCP/UDP/11001 | 769 | | Johnson Controls | Metasys BACNet | UDP/47808 | 770 | | OSIsoft | PI Server | TCP/5450 | 771 | | Siemens | Spectrum Power TG | TCP/50001 to 50016, TCP/50018 to 50020, UDP/50020 to 50021, TCP/50025 to 50028, TCP/50110 to 50111 | 772 | | SNC | GENe | TCP/38000 to 38001, TCP/38011 to 38012, TCP/38014 to 38015, TCP/38200, TCP/38210, TCP/38301, TCP/38400, TCP/38700, TCP/62900, TCP/62911, TCP/62924, TCP/62930, TCP/62938, TCP/62956 to 62957, TCP/62963, TCP/62981 to 62982, TCP/62985, TCP/62992, TCP/63012, TCP/63027 to 63036, TCP/63041, TCP/63075, TCP/63079, TCP/63082, TCP/63088, TCP/63094, TCP/65443 | 773 | | Telvent | OASyS DNA | UDP/5050 to 5051, TCP/5052, TCP/5065, TCP/12135 to 12137, TCP/56001 to 56099 | 774 | | OMRON | FINS communication protocol | TCP/UDP/9600 775 | 776 | ## All Control System Ports Sorted By Port Number 777 | 778 | The control system ports table combines the previous two tables and sorts the entries by port number. 779 | 780 | | Protocol | Ports | 781 | | ------------------ | :-----------------------------------: | 782 | | TCP/502 | Modbus TCP | 783 | | TCP/UDP/1089 | Foundation Fieldbus HSE | 784 | | TCP/UDP/1090 | Foundation Fieldbus HSE | 785 | | TCP/UDP/1091 | Foundation Fieldbus HSE | 786 | | TCP/UDP/1541 | Foxboro/Invensys Foxboro DCS Informix | 787 | | UDP/2222 | EtherNet/IP | 788 | | TCP/3480 | OPC UA Discovery Server | 789 | | TCP/UDP/4000 | Emerson/Fisher ROC Plus | 790 | | UDP/5050 to 5051 | Telvent OASyS DNA | 791 | | TCP/5052 | Telvent OASyS DNA | 792 | | TCP/5065 | Telvent OASyS DNA | 793 | | TCP/5450 | OSIsoft PI Server | 794 | | TCP/UDP/9600 | OMRON FINS protocol | 795 | | TCP/10307 | ABB Ranger 2003 | 796 | | TCP/10311 | ABB Ranger 2003 | 797 | | TCP/10364 to 10365 | ABB Ranger 2003 | 798 | | TCP/10407 | ABB Ranger 2003 | 799 | | TCP/10409 to 10410 | ABB Ranger 2003 | 800 | | TCP/10412 | ABB Ranger 2003 | 801 | | TCP/10414 to 10415 | ABB Ranger 2003 | 802 | | TCP/10428 | ABB Ranger 2003 | 803 | | TCP/10431 to 10432 | ABB Ranger 2003 | 804 | | TCP/10447 | ABB Ranger 2003 | 805 | | TCP/10449 to 10450 | ABB Ranger 2003 | 806 | | TCP/12316 | ABB Ranger 2003 | 807 | | TCP/12645 | ABB Ranger 2003 | 808 | | TCP/12647 to 12648 | ABB Ranger 2003 | 809 | | TCP/13722 | ABB Ranger 2003 | 810 | | TCP/UDP/11001 | Johnson Controls Metasys N1 | 811 | | TCP/12135 to 12137 | Telvent OASyS DNA | 812 | | TCP/13724 | ABB Ranger 2003 | 813 | | TCP/13782 to 13783 | ABB Ranger 2003 | 814 | | TCP/18000 | Iconic Genesis32 GenBroker (TCP) | 815 | | TCP/UDP/20000 | DNP3 | 816 | | TCP/UDP/34962 | PROFINET | 817 | | TCP/UDP/34963 | PROFINET | 818 | | TCP/UDP/34964 | PROFINET | 819 | | UDP/34980 | EtherCAT | 820 | | TCP/38589 | ABB Ranger 2003 | 821 | | TCP/38593 | ABB Ranger 2003 | 822 | | TCP/38000 to 38001 | SNC GENe | 823 | | TCP/38011 to 38012 | SNC GENe | 824 | | TCP/38014 to 38015 | SNC GENe | 825 | | TCP/38200 | SNC GENe | 826 | | TCP/38210 | SNC GENe | 827 | | TCP/38301 | SNC GENe | 828 | | TCP/38400 | SNC GENe | 829 | | TCP/38600 | ABB Ranger 2003 | 830 | | TCP/38700 | SNC GENe | 831 | | TCP/38971 | ABB Ranger 2003 | 832 | | TCP/39129 | ABB Ranger 2003 | 833 | | TCP/39278 | ABB Ranger 2003 | 834 | | TCP/UDP/44818 | EtherNet/IP | 835 | | TCP/UDP/45678 | Foxboro/Invensys Foxboro DCS AIMAPI | 836 | | UDP/47808 | BACnet/IP | 837 | | TCP/50001 to 50016 | Siemens Spectrum Power TG | 838 | | TCP/50018 to 50020 | Siemens Spectrum Power TG | 839 | | UDP/50020 to 50021 | Siemens Spectrum Power TG | 840 | | TCP/50025 to 50028 | Siemens Spectrum Power TG | 841 | | TCP/50110 to 50111 | Siemens Spectrum Power TG | 842 | | UDP/55000 to 55002 | FL-net Reception | 843 | | UDP/55003 | FL-net Transmission | 844 | | TCP/UDP/55555 | Foxboor/Invensys Foxboro DCS FoxAPI | 845 | | TCP/56001 to 56099 | Telvent OASyS DNA | 846 | | TCP/62900 | SNC GENe | 847 | | TCP/62911 | SNC GENe | 848 | | TCP/62924 | SNC GENe | 849 | | TCP/62930 | SNC GENe | 850 | | TCP/62938 | SNC GENe | 851 | | TCP/62956 to 62957 | SNC GENe | 852 | | TCP/62963 | SNC GENe | 853 | | TCP/62981 to 62982 | SNC GENe | 854 | | TCP/62985 | SNC GENe | 855 | | TCP/62992 | SNC GENe | 856 | | TCP/63012 | SNC GENe | 857 | | TCP/63027 to 63036 | SNC GENe | 858 | | TCP/63041 | SNC GENe | 859 | | TCP/63075 | SNC GENe | 860 | | TCP/63079 | SNC GENe | 861 | | TCP/63082 | SNC GENe | 862 | | TCP/63088 | SNC GENe | 863 | | TCP/63094 | SNC GENe | 864 | | TCP/65443 | SNC GENe | 865 | 866 | # Looking at Traffic Analysis: 867 | 868 | ## ICS/SCADA PCAP Samples: 869 | - https://github.com/ITI/ICS-Security-Tools/tree/master/pcaps 870 | 871 | ## Wireshark 872 | Always review the statistics. Check the following: 873 | - Endpoints 874 | - Protocols 875 | - Conversations 876 | 877 | 878 | # References: 879 | - https://www.linkedin.com/pulse/osint-tips-icsscada-assessment-strategy-ashwani-kumar 880 | - https://github.com/ITI/ICS-Security-Tools/blob/master/protocols/PORTS.md 881 | - https://www.offensiveosint.io/offensive-osint-s04-e03-tracking-internet-facing-industrial-control-system-devices-with-kamerka-lite/ 882 | 883 | id: 3bbd231305eb471ab904aa9b9d324124 884 | parent_id: 8166c2cb2ed54ecbbada07441e427fea 885 | created_time: 2022-11-18T07:55:54.162Z 886 | updated_time: 2022-11-18T08:06:45.528Z 887 | is_conflict: 0 888 | latitude: 0.00000000 889 | longitude: 0.00000000 890 | altitude: 0.0000 891 | author: 892 | source_url: 893 | is_todo: 0 894 | todo_due: 0 895 | todo_completed: 0 896 | source: joplin-desktop 897 | source_application: net.cozic.joplin-desktop 898 | application_data: 899 | order: 0 900 | user_created_time: 2022-11-18T07:55:54.162Z 901 | user_updated_time: 2022-11-18T08:06:45.528Z 902 | encryption_cipher_text: 903 | encryption_applied: 0 904 | markup_language: 1 905 | is_shared: 0 906 | share_id: 907 | conflict_original_id: 908 | master_key_id: 909 | type_: 13e6844734f73490ebccc3048d293af2e.md000644 0000000562 14336061324012542 0ustar00000000 000000 Missing Person Case 910 | 911 | id: 3e6844734f73490ebccc3048d293af2e 912 | created_time: 2020-10-19T01:18:07.512Z 913 | updated_time: 2020-10-19T01:18:07.512Z 914 | user_created_time: 2020-10-19T01:18:07.512Z 915 | user_updated_time: 2020-10-19T01:18:07.512Z 916 | encryption_cipher_text: 917 | encryption_applied: 0 918 | parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5 919 | is_shared: 0 920 | share_id: 921 | master_key_id: 922 | icon: 923 | type_: 2400b72fc58084fc697dcf153a3804f78.md000644 0000001612 14336061324012462 0ustar00000000 000000 Google Dorks for finding Various Online Devices 924 | 925 | # Searching for Public Querys: 926 | - https://www.exploit-db.com/google-hacking-database?category=13 927 | 928 | # Pi-Hole Admin Dashboard: 929 | - intitle:"Pi-hole-ip" inurl:admin 930 | 931 | # Cisco ASDM Devices: 932 | - inurl:/admin/public/asdm.jnlp "ASDM on" 933 | 934 | id: 400b72fc58084fc697dcf153a3804f78 935 | parent_id: 8166c2cb2ed54ecbbada07441e427fea 936 | created_time: 2022-09-12T02:39:47.851Z 937 | updated_time: 2022-09-12T04:23:48.169Z 938 | is_conflict: 0 939 | latitude: 0.00000000 940 | longitude: 0.00000000 941 | altitude: 0.0000 942 | author: 943 | source_url: 944 | is_todo: 0 945 | todo_due: 0 946 | todo_completed: 0 947 | source: joplin-desktop 948 | source_application: net.cozic.joplin-desktop 949 | application_data: 950 | order: 1662950387851 951 | user_created_time: 2022-09-12T02:39:47.851Z 952 | user_updated_time: 2022-09-12T04:23:48.169Z 953 | encryption_cipher_text: 954 | encryption_applied: 0 955 | markup_language: 1 956 | is_shared: 0 957 | share_id: 958 | conflict_original_id: 959 | master_key_id: 960 | type_: 151c0b6c8691f4a4db4fb8283ecb40b58.md000644 0000000544 14336061324012671 0ustar00000000 000000 Sites 961 | 962 | id: 51c0b6c8691f4a4db4fb8283ecb40b58 963 | created_time: 2020-10-19T01:24:06.107Z 964 | updated_time: 2022-06-08T01:10:08.089Z 965 | user_created_time: 2020-10-19T01:24:06.107Z 966 | user_updated_time: 2022-06-08T01:10:08.089Z 967 | encryption_cipher_text: 968 | encryption_applied: 0 969 | parent_id: 90987d9954be415d89fe7cc093c5f8c9 970 | is_shared: 0 971 | share_id: 972 | master_key_id: 973 | icon: 974 | type_: 2543ff1b66169453cac0931c55fcdb1ca.md000644 0000005330 14336061324012660 0ustar00000000 000000 Browser Extensions 975 | 976 | # Joplin Web Clipper 977 | 978 | The web clipper that allows you to clip web pages and take screenshots while you're browsing the internet. You can either save complete web pages or simplified versions of it. 979 | 980 | To install Joplin's Web Clipper you need to run through the following setup. 981 | 1. In Joplin select "Tools" > Options 982 | 2. Go to the Web Clipper tab and follow the instructions to install the web clipper exstention for Google Chrome or Firefox. 983 | 984 | # Google Chrome, Brave, Opera, and Microsoft Edge 985 | 986 | ## Note: All of these exstensions can be installed in these browsers because they are built off the same underlying technology as Google Chrome. 987 | 988 | Better History: https://chrome.google.com/webstore/detail/better-history/ 989 | 990 | Instant Data Scraper: https://chrome.google.com/webstore/detail/instant-data-scraper/ 991 | 992 | Map Switcher: https://chrome.google.com/webstore/detail/map-switcher/ 993 | 994 | Privacy Badger: https://privacybadger.org/ 995 | 996 | RevEye Reverse Image Search: https://chrome.google.com/webstore/detail/reveye-reverse-image-sear/ 997 | 998 | Session Buddy: https://chrome.google.com/webstore/detail/session-buddy 999 | 1000 | Search by Image: https://chrome.google.com/webstore/detail/search-by-image/ 1001 | 1002 | U-Block Orgin: https://ublockorigin.com/ 1003 | 1004 | UnPaywall: https://chrome.google.com/webstore/detail/unpaywall/ 1005 | 1006 | User-Agent-Switcher: https://chrome.google.com/webstore/detail/user-agent-switcher-for-c/ 1007 | 1008 | Vortimo: https://chrome.google.com/webstore/detail/vortimo-osint-tool/ 1009 | 1010 | Wayback Machine: https://chrome.google.com/webstore/detail/wayback-machine/ 1011 | 1012 | Wappalyzer: https://chrome.google.com/webstore/detail/wappalyzer-technology-pro/ 1013 | 1014 | # Firefox: 1015 | 1016 | Wayback Machine: https://addons.mozilla.org/es/firefox/addon/wayback-machine_new/?target=_blank&rel=nofollow,noopener,noreferrer&target=_blank 1017 | 1018 | Exif Viewer: https://addons.mozilla.org/es/firefox/addon/exif-viewer/?target=_blank&rel=nofollow,noopener,noreferrer&target=_blank 1019 | 1020 | Sputnik: https://addons.mozilla.org/es/firefox/addon/sputnik-osint/ 1021 | 1022 | User Agent Switcher: https://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher-revived/ 1023 | 1024 | Link Gopher: https://addons.mozilla.org/en-GB/firefox/addon/link-gopher/ 1025 | 1026 | 1027 | id: 543ff1b66169453cac0931c55fcdb1ca 1028 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 1029 | created_time: 2022-06-08T01:10:40.298Z 1030 | updated_time: 2022-11-18T09:05:18.447Z 1031 | is_conflict: 0 1032 | latitude: 39.04375670 1033 | longitude: -77.48744160 1034 | altitude: 0.0000 1035 | author: 1036 | source_url: 1037 | is_todo: 0 1038 | todo_due: 0 1039 | todo_completed: 0 1040 | source: joplin-desktop 1041 | source_application: net.cozic.joplin-desktop 1042 | application_data: 1043 | order: 1668755166394.5 1044 | user_created_time: 2022-06-08T01:10:40.298Z 1045 | user_updated_time: 2022-11-18T09:05:18.447Z 1046 | encryption_cipher_text: 1047 | encryption_applied: 0 1048 | markup_language: 1 1049 | is_shared: 0 1050 | share_id: 1051 | conflict_original_id: 1052 | master_key_id: 1053 | type_: 1588c8ced26e443ff81a28a790ae60cc1.md000644 0000001701 14336061324012676 0ustar00000000 000000 General Notes 1054 | 1055 | # This is a placeholder to keep a track of the sock accounts you have created and have burned. 1056 | 1057 | 1058 | ## Resources to help create your sock accounts: 1059 | Profile Image Maker: 1060 | 1061 | - https://thispersondoesnotexist.com/ 1062 | - https://fakenamegenerator.com 1063 | - https://en.namefake.com/ 1064 | - https://www.fakepersongenerator.com/fake-name-generator 1065 | 1066 | id: 588c8ced26e443ff81a28a790ae60cc1 1067 | parent_id: 3a4d05e63db04fc4b76cc7e4903625fe 1068 | created_time: 2021-07-27T03:55:46.803Z 1069 | updated_time: 2022-06-08T01:09:10.940Z 1070 | is_conflict: 0 1071 | latitude: 40.56220000 1072 | longitude: -111.92970000 1073 | altitude: 0.0000 1074 | author: 1075 | source_url: 1076 | is_todo: 0 1077 | todo_due: 0 1078 | todo_completed: 0 1079 | source: joplin-desktop 1080 | source_application: net.cozic.joplin-desktop 1081 | application_data: 1082 | order: 0 1083 | user_created_time: 2021-07-27T03:55:46.803Z 1084 | user_updated_time: 2022-06-08T01:09:10.940Z 1085 | encryption_cipher_text: 1086 | encryption_applied: 0 1087 | markup_language: 1 1088 | is_shared: 0 1089 | share_id: 1090 | conflict_original_id: 1091 | master_key_id: 1092 | type_: 161be7949633e48ba93ad403cfb7bf79d.md000644 0000001415 14336061324012711 0ustar00000000 000000 Images/Screenshots Template 1093 | 1094 | # Image #1: 1095 | - Where was the image found: 1096 | - Description of the image: 1097 | - Other details about the image: 1098 | - EXIF Data: 1099 | 1100 | id: 61be7949633e48ba93ad403cfb7bf79d 1101 | parent_id: e6223dc485394d7db5c0d870fa13fd63 1102 | created_time: 2021-07-29T04:34:40.740Z 1103 | updated_time: 2022-11-18T18:41:58.905Z 1104 | is_conflict: 0 1105 | latitude: 42.90740000 1106 | longitude: -78.81970000 1107 | altitude: 0.0000 1108 | author: 1109 | source_url: 1110 | is_todo: 0 1111 | todo_due: 0 1112 | todo_completed: 0 1113 | source: joplin-desktop 1114 | source_application: net.cozic.joplin-desktop 1115 | application_data: 1116 | order: 1627530681345 1117 | user_created_time: 2021-07-29T04:34:40.740Z 1118 | user_updated_time: 2022-11-18T18:41:58.905Z 1119 | encryption_cipher_text: 1120 | encryption_applied: 0 1121 | markup_language: 1 1122 | is_shared: 0 1123 | share_id: 1124 | conflict_original_id: 1125 | master_key_id: 1126 | type_: 166ad12d80e514ed2858f35c2c5ad0d0e.md000644 0000000562 14336061324012662 0ustar00000000 000000 References/Articles 1127 | 1128 | id: 66ad12d80e514ed2858f35c2c5ad0d0e 1129 | created_time: 2020-10-19T01:25:09.324Z 1130 | updated_time: 2020-10-19T01:25:14.464Z 1131 | user_created_time: 2020-10-19T01:25:09.324Z 1132 | user_updated_time: 2020-10-19T01:25:09.324Z 1133 | encryption_cipher_text: 1134 | encryption_applied: 0 1135 | parent_id: 90987d9954be415d89fe7cc093c5f8c9 1136 | is_shared: 0 1137 | share_id: 1138 | master_key_id: 1139 | icon: 1140 | type_: 276acc1833938495b9e16e882d3ded849.md000644 0000002242 14336061324012507 0ustar00000000 000000 ICS/SCADA 1141 | 1142 | # Kamerka GUI 1143 | - https://github.com/woj-ciech/Kamerka-GUI 1144 | 1145 | ## Setup and Installation: 1146 | 1147 | ``` 1148 | sudo apt install redis redis-server 1149 | git clone https://github.com/woj-ciech/Kamerka-GUI/ 1150 | pip3 install -r requirements.txt 1151 | python3 manage.py makemigrations 1152 | python3 manage.py migrate 1153 | python3 manage.py runserver 1154 | ``` 1155 | 1156 | 1. Execute this command in the main directory: ```celery worker -A kamerka --loglevel=info``` 1157 | 2. Intialize Celery: ```celery --app kamerka worker``` 1158 | 3. Karmerka should be running by going to the following URL: http://localhost:8000/ 1159 | 1160 | id: 76acc1833938495b9e16e882d3ded849 1161 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 1162 | created_time: 2022-11-18T07:39:28.015Z 1163 | updated_time: 2022-11-18T07:55:45.122Z 1164 | is_conflict: 0 1165 | latitude: 0.00000000 1166 | longitude: 0.00000000 1167 | altitude: 0.0000 1168 | author: 1169 | source_url: 1170 | is_todo: 0 1171 | todo_due: 0 1172 | todo_completed: 0 1173 | source: joplin-desktop 1174 | source_application: net.cozic.joplin-desktop 1175 | application_data: 1176 | order: 1668754025180.1562 1177 | user_created_time: 2022-11-18T07:39:28.015Z 1178 | user_updated_time: 2022-11-18T07:55:45.122Z 1179 | encryption_cipher_text: 1180 | encryption_applied: 0 1181 | markup_language: 1 1182 | is_shared: 0 1183 | share_id: 1184 | conflict_original_id: 1185 | master_key_id: 1186 | type_: 18166c2cb2ed54ecbbada07441e427fea.md000644 0000000555 14336061324013077 0ustar00000000 000000 Search Queries 1187 | 1188 | id: 8166c2cb2ed54ecbbada07441e427fea 1189 | created_time: 2020-10-19T01:24:36.379Z 1190 | updated_time: 2022-11-19T04:30:54.812Z 1191 | user_created_time: 2020-10-19T01:24:36.379Z 1192 | user_updated_time: 2022-11-19T04:30:54.812Z 1193 | encryption_cipher_text: 1194 | encryption_applied: 0 1195 | parent_id: 90987d9954be415d89fe7cc093c5f8c9 1196 | is_shared: 0 1197 | share_id: 1198 | master_key_id: 1199 | icon: 1200 | type_: 287bb11fb4c5e42d59249557f9c8b31ff.md000644 0000000544 14336061324012634 0ustar00000000 000000 Tools 1201 | 1202 | id: 87bb11fb4c5e42d59249557f9c8b31ff 1203 | created_time: 2022-06-08T01:09:45.778Z 1204 | updated_time: 2022-06-08T01:10:17.097Z 1205 | user_created_time: 2022-06-08T01:09:45.778Z 1206 | user_updated_time: 2022-06-08T01:10:17.097Z 1207 | encryption_cipher_text: 1208 | encryption_applied: 0 1209 | parent_id: 90987d9954be415d89fe7cc093c5f8c9 1210 | is_shared: 0 1211 | share_id: 1212 | master_key_id: 1213 | icon: 1214 | type_: 290987d9954be415d89fe7cc093c5f8c9.md000644 0000000550 14336061324012603 0ustar00000000 000000 Resources 1215 | 1216 | id: 90987d9954be415d89fe7cc093c5f8c9 1217 | created_time: 2020-10-19T01:24:02.137Z 1218 | updated_time: 2020-10-19T01:24:02.137Z 1219 | user_created_time: 2020-10-19T01:24:02.137Z 1220 | user_updated_time: 2020-10-19T01:24:02.137Z 1221 | encryption_cipher_text: 1222 | encryption_applied: 0 1223 | parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5 1224 | is_shared: 0 1225 | share_id: 1226 | master_key_id: 1227 | icon: 1228 | type_: 293c15daf2f4c486fb2f14ed7bf85bff5.md000644 0000000523 14336061324013125 0ustar00000000 000000 OSINT/Recon Notebook 1229 | 1230 | id: 93c15daf2f4c486fb2f14ed7bf85bff5 1231 | created_time: 2020-10-19T00:22:57.662Z 1232 | updated_time: 2022-11-12T22:35:03.572Z 1233 | user_created_time: 2020-10-19T00:22:57.662Z 1234 | user_updated_time: 2022-11-12T22:35:03.572Z 1235 | encryption_cipher_text: 1236 | encryption_applied: 0 1237 | parent_id: 1238 | is_shared: 0 1239 | share_id: 1240 | master_key_id: 1241 | icon: 1242 | type_: 29680c3b4fae5496884daa48ee21626d0.md000644 0000002364 14336061324012550 0ustar00000000 000000 Social Media Scrapers 1243 | 1244 | # Instagram: 1245 | 1246 | ## Instaloader 1247 | - https://github.com/instaloader/instaloader 1248 | 1249 | ## Installation 1250 | In Kali Linux: ```sudo apt install instaloader``` 1251 | 1252 | ## Toutatis: 1253 | - https://github.com/megadose/toutatis 1254 | 1255 | ## Installation: 1256 | ``` 1257 | git clone https://github.com/megadose/toutatis.git 1258 | cd toutatis/ 1259 | python3 setup.py install 1260 | ``` 1261 | 1262 | Usage: 1263 | - toutatis -u username -s instagramsessionid 1264 | 1265 | # Masto 1266 | - https://github.com/C3n7ral051nt4g3ncy/Masto 1267 | 1268 | ## Installation 1269 | ``` 1270 | git clone https://github.com/C3n7ral051nt4g3ncy/Masto 1271 | pip3 install -r requirements.txt 1272 | ``` 1273 | 1274 | ## Using Masto 1275 | - python3 masto.py -u {username} 1276 | - python3 masto.py -i {instance} 1277 | 1278 | id: 9680c3b4fae5496884daa48ee21626d0 1279 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 1280 | created_time: 2022-07-01T20:34:35.709Z 1281 | updated_time: 2022-11-18T08:44:57.882Z 1282 | is_conflict: 0 1283 | latitude: 0.00000000 1284 | longitude: 0.00000000 1285 | altitude: 0.0000 1286 | author: 1287 | source_url: 1288 | is_todo: 0 1289 | todo_due: 0 1290 | todo_completed: 0 1291 | source: joplin-desktop 1292 | source_application: net.cozic.joplin-desktop 1293 | application_data: 1294 | order: 1656707675709 1295 | user_created_time: 2022-07-01T20:34:35.709Z 1296 | user_updated_time: 2022-11-18T08:44:57.882Z 1297 | encryption_cipher_text: 1298 | encryption_applied: 0 1299 | markup_language: 1 1300 | is_shared: 0 1301 | share_id: 1302 | conflict_original_id: 1303 | master_key_id: 1304 | type_: 196cd33181ac446419b2cbefec51c0739.md000644 0000000553 14336061324012610 0ustar00000000 000000 Company Case 1305 | 1306 | id: 96cd33181ac446419b2cbefec51c0739 1307 | created_time: 2020-10-19T01:18:18.913Z 1308 | updated_time: 2020-10-19T01:18:18.913Z 1309 | user_created_time: 2020-10-19T01:18:18.913Z 1310 | user_updated_time: 2020-10-19T01:18:18.913Z 1311 | encryption_cipher_text: 1312 | encryption_applied: 0 1313 | parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5 1314 | is_shared: 0 1315 | share_id: 1316 | master_key_id: 1317 | icon: 1318 | type_: 29d5d41c8398745a28c9b54277f2a2918.md000644 0000002620 14336061324012340 0ustar00000000 000000 OSINT SiteMaps 1319 | 1320 | ## Summary Overview: 1321 | 1322 | Each Link contains a dashboard or a set of tools that they recommend to use for OSINT. Although these lists may not be up to date from time to time they can come in handy depending on what you are looking for. 1323 | 1324 | # List of sites that collect OSINT Tools, Sites, and Resources: 1325 | 1326 | IntelTechniques Search Tools: https://inteltechniques.com/tools/index.html 1327 | 1328 | OSINT Tools Dashboard: https://start.me/p/7kxyy2/osint-tools-curated-by-lorand-bodo 1329 | 1330 | Terrorism Radicalisation Research Dashboard: https://start.me/p/OmExgb/terrorism-radicalisation-research-dashboard 1331 | 1332 | OSINT Techniques: https://www.osinttechniques.com/osint-tools.html 1333 | 1334 | OSINT Framework: https://osintframework.com/ 1335 | 1336 | NixIntel OSINT Resource List: https://start.me/p/rx6Qj8/nixintel-s-osint-resource-list 1337 | 1338 | id: 9d5d41c8398745a28c9b54277f2a2918 1339 | parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58 1340 | created_time: 2022-11-18T07:29:54.431Z 1341 | updated_time: 2022-11-18T20:53:51.392Z 1342 | is_conflict: 0 1343 | latitude: 0.00000000 1344 | longitude: 0.00000000 1345 | altitude: 0.0000 1346 | author: 1347 | source_url: 1348 | is_todo: 0 1349 | todo_due: 0 1350 | todo_completed: 0 1351 | source: joplin-desktop 1352 | source_application: net.cozic.joplin-desktop 1353 | application_data: 1354 | order: 1656351122377 1355 | user_created_time: 2022-11-18T07:29:54.431Z 1356 | user_updated_time: 2022-11-18T20:53:51.392Z 1357 | encryption_cipher_text: 1358 | encryption_applied: 0 1359 | markup_language: 1 1360 | is_shared: 0 1361 | share_id: 1362 | conflict_original_id: 1363 | master_key_id: 1364 | type_: 1a2fdfafa387c4232b8cdabf3dde5dae2.md000644 0000003740 14336061324013401 0ustar00000000 000000 Google Dorks 1365 | 1366 | Google Hacking Database: https://www.exploit-db.com/google-hacking-database 1367 | 1368 | Do not forget to include icons, emojism or unicode charecters in your searchs depending on the subject. 1369 | 1370 | ## Searching for names: 1371 | 1372 | - "james king" site: 1373 | - "james king" -"site:/jamesking" site: 1374 | - "james" "king" -site: 1375 | - intile:final.attendee.list OR inurl:final.attendee.list "james king" 1376 | 1377 | ## Searching for names in files: 1378 | - inurl: filetype: "username, password, email" 1379 | - inurl:resume :"james king" 1380 | - intext:resume "james king" 1381 | - allintext: "james king" 1382 | 1383 | # Searching for names in Github Code: 1384 | - site https://github.com/orgs/*/people 1385 | 1386 | # Search for emails with passwords: 1387 | 1388 | - site:pastebin.com "*@gmail.com password" 1389 | - site:pastebin.com "*@outlook.com password" 1390 | - site:gitlab.* intext:password intext:@gmail.com | @yahoo.com | @hotmail.com 1391 | 1392 | # Searching for social media accounts 1393 | 1394 | - site:facebook.com "display name" 1395 | - inurl:facebook.com "display name" 1396 | - inurl:facebook.com inurl:username 1397 | - inurl:facebook.com inurl:firstname inurl:secondname 1398 | 1399 | # Searching for telegram groups 1400 | - site:t.me/joinchat 1401 | - site:t.me/* 1402 | - site:t.me 1403 | - site:telegram.me 1404 | 1405 | # Searching for human resources 1406 | - intitle: "index of" intext: human resources 1407 | 1408 | 1409 | id: a2fdfafa387c4232b8cdabf3dde5dae2 1410 | parent_id: 8166c2cb2ed54ecbbada07441e427fea 1411 | created_time: 2020-12-06T03:32:59.304Z 1412 | updated_time: 2022-11-18T05:38:08.065Z 1413 | is_conflict: 0 1414 | latitude: 0.00000000 1415 | longitude: 0.00000000 1416 | altitude: 0.0000 1417 | author: 1418 | source_url: 1419 | is_todo: 0 1420 | todo_due: 0 1421 | todo_completed: 0 1422 | source: joplin-desktop 1423 | source_application: net.cozic.joplin-desktop 1424 | application_data: 1425 | order: 1662950638467.5 1426 | user_created_time: 2020-12-06T03:32:59.304Z 1427 | user_updated_time: 2022-11-18T05:38:08.065Z 1428 | encryption_cipher_text: 1429 | encryption_applied: 0 1430 | markup_language: 1 1431 | is_shared: 0 1432 | share_id: 1433 | conflict_original_id: 1434 | master_key_id: 1435 | type_: 1ab4dbc65f6af49568044488963f13b61.md000644 0000003744 14336061324012476 0ustar00000000 000000 Breach Tools 1436 | 1437 | ### PwnedOrNot (https://github.com/thewhiteh4t/pwnedOrNot) 1438 | Installation: 1439 | ``` 1440 | Must make a payment to get a haveibeenpwned API key 1441 | Obtain an API Key: https://haveibeenpwned.com/API/Key 1442 | haveibeenpwned API v3 Documentation: https://haveibeenpwned.com/API/v3 1443 | 1444 | git clone https://github.com/thewhiteh4t/pwnedOrNot.git 1445 | cd pwnedOrNot 1446 | chmod +x install.sh 1447 | ./install.sh 1448 | ``` 1449 | 1450 | Using pwnedornot: 1451 | Checking for a Single Email 1452 | - python3 pwnedornot.py -e 1453 | - python3 pwnedornot.py --email 1454 | 1455 | Check Multiple Emails from File 1456 | - python3 pwnedornot.py -f 1457 | - python3 pwnedornot.py --file 1458 | 1459 | Filter Result for a Domain Name [Ex : adobe.com] 1460 | - python3 pwnedornot.py -e -d 1461 | - python3 pwnedornot.py -f --domain 1462 | 1463 | Get only Breach Info, Skip Password Dumps 1464 | - python3 pwnedornot.py -e -n 1465 | - python3 pwnedornot.py -f --nodumps 1466 | 1467 | Get List of all Breached Domains 1468 | -python3 pwnedornot.py -l 1469 | - python3 pwnedornot.py --list 1470 | 1471 | Check if a Domain is Pwned 1472 | - python3 pwnedornot.py -c 1473 | - python3 pwnedornot.py --check 1474 | 1475 | ### pwned (https://github.com/wKovacs64/pwned) 1476 | 1477 | Installation: 1478 | ``` 1479 | Kali Linux: 1480 | apt install nodejs 1481 | apt install npm 1482 | npm install pwned -g 1483 | ``` 1484 | 1485 | Using Pwned: 1486 | Adding your haveibeenpwned API key 1487 | - pwned apikey 1488 | Obtain all breaches for an account 1489 | - pwned ba 1490 | 1491 | 1492 | id: ab4dbc65f6af49568044488963f13b61 1493 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 1494 | created_time: 2022-11-10T05:56:13.907Z 1495 | updated_time: 2022-11-10T16:51:17.336Z 1496 | is_conflict: 0 1497 | latitude: 0.00000000 1498 | longitude: 0.00000000 1499 | altitude: 0.0000 1500 | author: 1501 | source_url: 1502 | is_todo: 0 1503 | todo_due: 0 1504 | todo_completed: 0 1505 | source: joplin-desktop 1506 | source_application: net.cozic.joplin-desktop 1507 | application_data: 1508 | order: 1668756183008.25 1509 | user_created_time: 2022-11-10T05:56:13.907Z 1510 | user_updated_time: 2022-11-10T16:51:17.336Z 1511 | encryption_cipher_text: 1512 | encryption_applied: 0 1513 | markup_language: 1 1514 | is_shared: 0 1515 | share_id: 1516 | conflict_original_id: 1517 | master_key_id: 1518 | type_: 1b21cd37bae094aa4bff7e580c017ccba.md000644 0000005504 14336061324013147 0ustar00000000 000000 Main Template 1519 | 1520 | # Template Breakdown: 1521 | 1522 | # Summary Overview 1523 | 1524 | - Information/Intel about the person that went missing 1525 | 1526 | # Personal Information: 1527 | 1528 | - Full Name: 1529 | - Alias Names/Handles: 1530 | - Age: 1531 | - Address: 1532 | - Height/Weight: 1533 | - Gender: 1534 | - Birth Date: 1535 | - Personal Email: 1536 | - Phone Numbers: 1537 | - Breached Passwords: 1538 | - Single/Married: 1539 | - Forms of Identification: 1540 | - Vehicle Information (Make, Year, Color, License): 1541 | 1542 | # Social Media: 1543 | 1544 | - Facebook: 1545 | - Twitter: 1546 | - Instagram: 1547 | - Youtube: 1548 | - Vysco: 1549 | - Snapchat: 1550 | - TikTok: 1551 | - Tumblr: 1552 | - PinInterest: 1553 | - Vk: 1554 | - Reddit: 1555 | - Craiglist: 1556 | - Kijiji: 1557 | - Telegram: 1558 | - Github 1559 | - Discord: 1560 | - Skype: 1561 | 1562 | # Gamer Handles: 1563 | - Steam: 1564 | - Xbox: 1565 | - Playstation Network: 1566 | - Other: 1567 | 1568 | # Other accounts/handles: 1569 | 1570 | - Blog Posts: 1571 | - Forum profiles: 1572 | 1573 | # Work/Careers: 1574 | 1575 | - Linkedin: 1576 | - Company Name: 1577 | - Job Description: 1578 | - Start/End Date: 1579 | - Work Email: 1580 | - Work Website: 1581 | - Work Phone Number: 1582 | - Work Address: 1583 | 1584 | - Interesting comments from employees: 1585 | 1586 | # Home/Place of Living: 1587 | - Address: 1588 | - Noticeable Habits: 1589 | 1590 | ## Owns the Home/Place: 1591 | - Information/Tips from the neighbors: 1592 | - Any Issues in the area? 1593 | 1594 | ## Lives in a rental place: 1595 | 1596 | - Landlords Name: 1597 | - Landlords Phone Number: 1598 | - Information/Tips from other tenants: 1599 | - Any Issues in the Area? 1600 | 1601 | # Other Information about the Person: 1602 | - Unique Identifiers (Tattos, scars, piercings/jewlery): 1603 | - Habits (Smoking, Drinking, Hitch Hiking, Hangouts, Gang Affliation): 1604 | - Tips/Other information where the subject may be headed: 1605 | - History of the person missing in the past: 1606 | 1607 | # Technical Information/Devices: 1608 | - Device: 1609 | - Brand/Modfel: 1610 | - Carrier: 1611 | - ISP: 1612 | - IP Addresses: 1613 | - Accounts involved in a breach: 1614 | 1615 | # Friends: 1616 | 1617 | - Name: 1618 | - Relation: 1619 | - Address: 1620 | - Phone Number: 1621 | - Email: 1622 | - Social Media Handle: 1623 | - Proof/Evidence: 1624 | - Interesting comments from there friend/friends: 1625 | 1626 | 1627 | # Family: 1628 | 1629 | - Name: 1630 | - Relation: 1631 | - Address: 1632 | - Phone Number: 1633 | - Email: 1634 | - Social Media Handle: 1635 | - Proof/Evidence: 1636 | - Interesting comments from family members: 1637 | 1638 | # Other Intel: 1639 | 1640 | ## Day Last Seen: 1641 | - Details of the day the person was seen: 1642 | - Location: 1643 | - Any Mood Altercation, Conversations, or directions where they could be going to next. 1644 | - Were they intending to meet someone? 1645 | - Other Information that can relate to when the person was seen. 1646 | 1647 | 1648 | 1649 | 1650 | id: b21cd37bae094aa4bff7e580c017ccba 1651 | parent_id: 3e6844734f73490ebccc3048d293af2e 1652 | created_time: 2020-12-04T03:14:30.249Z 1653 | updated_time: 2022-11-18T05:37:25.560Z 1654 | is_conflict: 0 1655 | latitude: 0.00000000 1656 | longitude: 0.00000000 1657 | altitude: 0.0000 1658 | author: 1659 | source_url: 1660 | is_todo: 0 1661 | todo_due: 0 1662 | todo_completed: 0 1663 | source: joplin-desktop 1664 | source_application: net.cozic.joplin-desktop 1665 | application_data: 1666 | order: 1641090706276.5 1667 | user_created_time: 2020-12-04T03:14:30.249Z 1668 | user_updated_time: 2022-11-18T05:37:25.560Z 1669 | encryption_cipher_text: 1670 | encryption_applied: 0 1671 | markup_language: 1 1672 | is_shared: 0 1673 | share_id: 1674 | conflict_original_id: 1675 | master_key_id: 1676 | type_: 1b44e043041144cb8b30ffef64c066d7c.md000644 0000001415 14336061324012574 0ustar00000000 000000 Images-Screenshots Template 1677 | 1678 | # Image #1: 1679 | - Where was the image found: 1680 | - Description of the image: 1681 | - Other details about the image: 1682 | - EXIF Data: 1683 | 1684 | id: b44e043041144cb8b30ffef64c066d7c 1685 | parent_id: 96cd33181ac446419b2cbefec51c0739 1686 | created_time: 2021-07-29T03:51:21.345Z 1687 | updated_time: 2022-11-19T04:22:12.252Z 1688 | is_conflict: 0 1689 | latitude: 42.90740000 1690 | longitude: -78.81970000 1691 | altitude: 0.0000 1692 | author: 1693 | source_url: 1694 | is_todo: 0 1695 | todo_due: 0 1696 | todo_completed: 0 1697 | source: joplin-desktop 1698 | source_application: net.cozic.joplin-desktop 1699 | application_data: 1700 | order: 1627530681345 1701 | user_created_time: 2021-07-29T03:51:21.345Z 1702 | user_updated_time: 2022-11-19T04:22:12.252Z 1703 | encryption_cipher_text: 1704 | encryption_applied: 0 1705 | markup_language: 1 1706 | is_shared: 0 1707 | share_id: 1708 | conflict_original_id: 1709 | master_key_id: 1710 | type_: 1c12240f433a147899b8127ac99b3330d.md000644 0000004443 14336061324012310 0ustar00000000 000000 Dark Web 1711 | 1712 | # Setup and Initialization: 1713 | 1714 | ## In Kali Linux 1715 | ``` 1716 | # Commands to Install tor and the tor browser 1717 | sudo apt install tor 1718 | sudo apt install tor-browser 1719 | 1720 | # Running the tor browser 1721 | Command Line: Open the terminal and type tor-browser 1722 | 1723 | A new window will appear loading the tor browser 1724 | ``` 1725 | 1726 | Configuring 1727 | 1728 | ## Browsers: 1729 | Brave: https://brave.com/ 1730 | I2P: https://geti2p.net/en/ 1731 | Tor Broswer: https://www.torproject.org 1732 | Whonix: https://www.whonix.org/ 1733 | Zeronet: https://zeronet.io/ 1734 | 1735 | 1736 | # Dark Web Scanners: 1737 | 1738 | Katana: https://github.com/TebbaaX/Katana 1739 | 1740 | Installation: 1741 | ``` 1742 | git clone https://github.com/TebbaaX/Katana 1743 | cd Katana 1744 | python3 -m pip install -r requirements.txt 1745 | python3 kds.py 1746 | ``` 1747 | 1748 | Onion Search: https://github.com/megadose/OnionSearch 1749 | ``` 1750 | git clone https://github.com/megadose/OnionSearch 1751 | cd onionseach 1752 | python3 setup.py install 1753 | onionsearch 1754 | ``` 1755 | 1756 | Darkdump: https://github.com/josh0xA/darkdump 1757 | Note: Darksearch.io now forbids public queries so this tool may not work 1758 | 1759 | ``` 1760 | git clone https://github.com/josh0xA/darkdump 1761 | cd darkdump 1762 | python3 -m pip install -r requirements.txt 1763 | python3 darkdump.py --help 1764 | ``` 1765 | 1766 | # Other tools to crawl the TOR network 1767 | - https://github.com/DedSecInside/TorBot 1768 | 1769 | # Commands to verify if onion links are active: 1770 | Note: You will needed to be connected or proxied into the tor network to check if the site. 1771 | nmap: 1772 | ``` 1773 | nmap -sT -PN -n -p 80,443 facebookcorewwwi.onion 1774 | 1775 | proxychains4 -f /etc/proxychains.conf /usr/bin/nmap -sT -PN -n -p 80,443 facebookcorewwwi.onion 1776 | ``` 1777 | curl: 1778 | ``` 1779 | curl -I https://facebookcorewwwi.onion 1780 | ``` 1781 | netcat (nc): 1782 | ``` 1783 | nc -z 80 facebookcorewwwi.onion 1784 | nc -z 443 facebookcorewwwi.onion 1785 | ``` 1786 | 1787 | # Resources: 1788 | Installing Tor on Kali Linux: https://www.kali.org/docs/tools/tor/ 1789 | 1790 | 1791 | id: c12240f433a147899b8127ac99b3330d 1792 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 1793 | created_time: 2022-06-27T15:20:13.216Z 1794 | updated_time: 2022-11-19T04:54:50.300Z 1795 | is_conflict: 0 1796 | latitude: 34.74648090 1797 | longitude: -92.28959480 1798 | altitude: 0.0000 1799 | author: 1800 | source_url: 1801 | is_todo: 0 1802 | todo_due: 0 1803 | todo_completed: 0 1804 | source: joplin-desktop 1805 | source_application: net.cozic.joplin-desktop 1806 | application_data: 1807 | order: 1668754151981.75 1808 | user_created_time: 2022-06-27T15:20:13.216Z 1809 | user_updated_time: 2022-11-19T04:54:50.300Z 1810 | encryption_cipher_text: 1811 | encryption_applied: 0 1812 | markup_language: 1 1813 | is_shared: 0 1814 | share_id: 1815 | conflict_original_id: 1816 | master_key_id: 1817 | type_: 1cdfe668d66674ba79131d8327e5fea7b.md000644 0000002342 14336061324012716 0ustar00000000 000000 Uncovering Images: 1818 | 1819 | # Reverse Image Search 1820 | 1821 | - https://images.google.com/ 1822 | - https://www.bing.com/images/ 1823 | - https://tineye.com/ 1824 | - https://pimeyes.com/en 1825 | - https://images.search.yahoo.com/ 1826 | - https://www.gettyimages.com/ 1827 | - https://www.shutterstock.com/ 1828 | 1829 | ## Face image search engines: 1830 | 1831 | - https://pimeyes.com/en 1832 | 1833 | ## EXIF Tools 1834 | - https://exif.tools/ 1835 | - https://exifdata.com/ 1836 | - https://www.metadata2go.com/ 1837 | - https://jimpl.com/ 1838 | 1839 | # EXIF Metadata Editors: 1840 | - https://www.thexifer.net/ 1841 | 1842 | ## Checking for Deepfakes: 1843 | - https://scanner.deepware.ai/ 1844 | - https://detectfakes.media.mit.edu/# (Resource to learn how to detect deepfakes) 1845 | 1846 | id: cdfe668d66674ba79131d8327e5fea7b 1847 | parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58 1848 | created_time: 2020-12-07T04:56:59.276Z 1849 | updated_time: 2022-11-18T18:51:27.504Z 1850 | is_conflict: 0 1851 | latitude: 0.00000000 1852 | longitude: 0.00000000 1853 | altitude: 0.0000 1854 | author: 1855 | source_url: 1856 | is_todo: 0 1857 | todo_due: 0 1858 | todo_completed: 0 1859 | source: joplin-desktop 1860 | source_application: net.cozic.joplin-desktop 1861 | application_data: 1862 | order: 1641936618260.5 1863 | user_created_time: 2020-12-07T04:56:59.276Z 1864 | user_updated_time: 2022-11-18T18:51:27.504Z 1865 | encryption_cipher_text: 1866 | encryption_applied: 0 1867 | markup_language: 1 1868 | is_shared: 0 1869 | share_id: 1870 | conflict_original_id: 1871 | master_key_id: 1872 | type_: 1d30dc62f10b14cebb192bc907c56cd30.md000644 0000011104 14336061324012715 0ustar00000000 000000 OSINT Framework Tools 1873 | 1874 | # OSIF 1875 | 1876 | ## Installation: 1877 | ``` 1878 | git clone https://github.com/fr4nc1stein/osint-framework osif 1879 | cd osif 1880 | pip3 install -r requirements.txt 1881 | ``` 1882 | 1883 | Create an enviornment file (.env) and include your API keys: 1884 | ``` 1885 | VT_API="" 1886 | CENSYS_APPID="" 1887 | CENSYS_SECRET="" 1888 | ABUSECH_API_KEY = "" 1889 | SHODAN_API_KEY = "" 1890 | HUNTER_API_KEY = "" 1891 | BITCOINABUSE_API_KEY = "" 1892 | WIGLE_API_NAME = "" 1893 | WIGLE_API_TOKEN = "" 1894 | SECURITY_TRAIL_API = "" 1895 | ``` 1896 | 1897 | ## Executing the program: 1898 | 1899 | ``` 1900 | python3 ./osif 1901 | ``` 1902 | 1903 | # Recon-NG 1904 | 1905 | ## Installation: 1906 | Already installed in Kali Linux 1907 | 1908 | ## Loading the program and installing modules: 1909 | ``` 1910 | $ recon-ng 1911 | [*] Version check disabled. 1912 | 1913 | _/_/_/ _/_/_/_/ _/_/_/ _/_/_/ _/ _/ _/ _/ _/_/_/ 1914 | _/ _/ _/ _/ _/ _/ _/_/ _/ _/_/ _/ _/ 1915 | _/_/_/ _/_/_/ _/ _/ _/ _/ _/ _/ _/_/_/_/ _/ _/ _/ _/ _/_/_/ 1916 | _/ _/ _/ _/ _/ _/ _/ _/_/ _/ _/_/ _/ _/ 1917 | _/ _/ _/_/_/_/ _/_/_/ _/_/_/ _/ _/ _/ _/ _/_/_/ 1918 | 1919 | 1920 | /\ 1921 | / \\ /\ 1922 | Sponsored by... /\ /\/ \\V \/\ 1923 | / \\/ // \\\\\ \\ \/\ 1924 | // // BLACK HILLS \/ \\ 1925 | www.blackhillsinfosec.com 1926 | 1927 | ____ ____ ____ ____ _____ _ ____ ____ ____ 1928 | |____] | ___/ |____| | | | |____ |____ | 1929 | | | \_ | | |____ | | ____| |____ |____ 1930 | www.practisec.com 1931 | 1932 | [recon-ng v5.1.2, Tim Tomes (@lanmaster53)] 1933 | 1934 | [recon-ng][default] > marketplace search 1935 | 1936 | +---------------------------------------------------------------------------------------------------+ 1937 | | Path | Version | Status | Updated | D | K | 1938 | +---------------------------------------------------------------------------------------------------+ 1939 | | discovery/info_disclosure/cache_snoop | 1.1 | not installed | 2020-10-13 | | | 1940 | | discovery/info_disclosure/interesting_files | 1.2 | not installed | 2021-10-04 | | | 1941 | | exploitation/injection/command_injector | 1.0 | not installed | 2019-06-24 | | | 1942 | | exploitation/injection/xpath_bruter | 1.2 | not installed | 2019-10-08 | | | 1943 | | import/csv_file | 1.1 | not installed | 2019-08-09 | | | 1944 | | import/list | 1.1 | not installed | 2019-06-24 | | | 1945 | | import/masscan | 1.0 | not installed | 2020-04-07 | | | 1946 | | import/nmap | 1.1 | not installed | 2020-10-06 | | | 1947 | | recon/companies-contacts/bing_linkedin_cache | 1.0 | not installed | 2019-06-24 | | * | 1948 | | recon/companies-contacts/censys_email_address | 2.0 | not installed | 2021-05-11 | * | * | 1949 | | recon/companies-contacts/pen | 1.1 | not installed | 2019-10-15 | | | 1950 | | recon/companies-domains/censys_subdomains | 2.0 | not installed | 2021-05-10 | * | * | 1951 | 1952 | [recon-ng][default] > marketplace install recon/companies-domains/viewdns_reverse_whois 1953 | [*] Module installed: recon/companies-domains/viewdns_reverse_whois 1954 | [*] Reloading modules... 1955 | ``` 1956 | 1957 | ## Using the module and setting the options: 1958 | ``` 1959 | [recon-ng][default] > modules load recon/companies-domains/viewdns_reverse_whois 1960 | [recon-ng][default][viewdns_reverse_whois] > options list 1961 | 1962 | Name Current Value Required Description 1963 | ------ ------------- -------- ----------- 1964 | SOURCE default yes source of input (see 'info' for details) 1965 | 1966 | [recon-ng][default][viewdns_reverse_whois] > options set source google.com 1967 | SOURCE => google.com 1968 | [recon-ng][default][viewdns_reverse_whois] > run 1969 | 1970 | ``` 1971 | 1972 | 1973 | 1974 | 1975 | 1976 | 1977 | 1978 | 1979 | 1980 | id: d30dc62f10b14cebb192bc907c56cd30 1981 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 1982 | created_time: 2022-11-18T06:32:17.569Z 1983 | updated_time: 2022-11-18T06:49:12.207Z 1984 | is_conflict: 0 1985 | latitude: 0.00000000 1986 | longitude: 0.00000000 1987 | altitude: 0.0000 1988 | author: 1989 | source_url: 1990 | is_todo: 0 1991 | todo_due: 0 1992 | todo_completed: 0 1993 | source: joplin-desktop 1994 | source_application: net.cozic.joplin-desktop 1995 | application_data: 1996 | order: 1668753137569 1997 | user_created_time: 2022-11-18T06:32:17.569Z 1998 | user_updated_time: 2022-11-18T06:49:12.207Z 1999 | encryption_cipher_text: 2000 | encryption_applied: 0 2001 | markup_language: 1 2002 | is_shared: 0 2003 | share_id: 2004 | conflict_original_id: 2005 | master_key_id: 2006 | type_: 1d4108e5618694c5ebc2bd7e7a98a0e96.md000644 0000004305 14336061324012632 0ustar00000000 000000 About This Notebook 2007 | 2008 | # About This Notebook 2009 | 2010 | This OSINT Notebook provides an overview of the tools, techniques, and resources that I use for a variety of situations when it comes to performing reconnaissance and OSINT operations. This Notebook has helped me in many situations to learn more about OSINT and how to analyze the data that is out there on the internet. 2011 | 2012 | Included in the notebook are three templates that you can copy and fill in, or repurpose depending on the information you need for your research. These case templates helped me keep a track of things I found online depending on the situation that I was assigned to assess. 2013 | 2014 | Although this notebook may be missing a tool, resource, or technique that other OSINT operators use, it is really hard to keep a track of what is out there. There will always be a new tool, search technique, or resource telling you how to OSINT. At the end of the day you should use this notebook as a way to start a baseline to create your own or to modify it for your use cases and situations. 2015 | 2016 | # Created by TJ Null 2017 | 2018 | **Twitter:** https://twitter.com/TJ_Null 2019 | **Mastodon (Infosec.Exchange):** https://infosec.exchange/@Tjnull 2020 | **Github:** https://github.com/tjnull 2021 | 2022 | ## Special Thanks 2023 | 2024 | I want to quickly recognize and thank those that helped me craft this notebook through their reviews and feedback, including: 2025 | 2026 | - rag_sec 2027 | - Adrestia 2028 | - 0xDISREL 2029 | - Andrew Nowlin 2030 | - 5nacks 2031 | - Alethe Denis: https://twitter.com/AletheDenis 2032 | 2033 | # Contribution: 2034 | 2035 | If you would like to contribute to the template or provide improvements, you can submit an issue on the Github Repo here: 2036 | 2037 | - https://github.com/tjnull/ 2038 | 2039 | id: d4108e5618694c5ebc2bd7e7a98a0e96 2040 | parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5 2041 | created_time: 2022-11-19T00:18:50.666Z 2042 | updated_time: 2022-11-19T00:19:57.226Z 2043 | is_conflict: 0 2044 | latitude: 0.00000000 2045 | longitude: 0.00000000 2046 | altitude: 0.0000 2047 | author: 2048 | source_url: 2049 | is_todo: 0 2050 | todo_due: 0 2051 | todo_completed: 0 2052 | source: joplin-desktop 2053 | source_application: net.cozic.joplin-desktop 2054 | application_data: 2055 | order: 0 2056 | user_created_time: 2022-11-19T00:18:50.666Z 2057 | user_updated_time: 2022-11-19T00:19:57.226Z 2058 | encryption_cipher_text: 2059 | encryption_applied: 0 2060 | markup_language: 1 2061 | is_shared: 0 2062 | share_id: 2063 | conflict_original_id: 2064 | master_key_id: 2065 | type_: 1dcf89f663da448a3b703e5f145d97baf.md000644 0000001415 14336061324012767 0ustar00000000 000000 Images/Screenshots Template 2066 | 2067 | # Image #1: 2068 | - Where was the image found: 2069 | - Description of the image: 2070 | - Other details about the image: 2071 | - EXIF Data: 2072 | 2073 | id: dcf89f663da448a3b703e5f145d97baf 2074 | parent_id: 3e6844734f73490ebccc3048d293af2e 2075 | created_time: 2021-07-29T04:34:33.850Z 2076 | updated_time: 2022-11-18T18:41:47.929Z 2077 | is_conflict: 0 2078 | latitude: 42.90740000 2079 | longitude: -78.81970000 2080 | altitude: 0.0000 2081 | author: 2082 | source_url: 2083 | is_todo: 0 2084 | todo_due: 0 2085 | todo_completed: 0 2086 | source: joplin-desktop 2087 | source_application: net.cozic.joplin-desktop 2088 | application_data: 2089 | order: 1627530681345 2090 | user_created_time: 2021-07-29T04:34:33.850Z 2091 | user_updated_time: 2022-11-18T18:41:47.929Z 2092 | encryption_cipher_text: 2093 | encryption_applied: 0 2094 | markup_language: 1 2095 | is_shared: 0 2096 | share_id: 2097 | conflict_original_id: 2098 | master_key_id: 2099 | type_: 1e6223dc485394d7db5c0d870fa13fd63.md000644 0000000566 14336061324012622 0ustar00000000 000000 Person of Interest Case 2100 | 2101 | id: e6223dc485394d7db5c0d870fa13fd63 2102 | created_time: 2020-10-19T01:17:41.886Z 2103 | updated_time: 2022-11-18T05:19:21.276Z 2104 | user_created_time: 2020-10-19T01:17:41.886Z 2105 | user_updated_time: 2022-11-18T05:19:21.276Z 2106 | encryption_cipher_text: 2107 | encryption_applied: 0 2108 | parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5 2109 | is_shared: 0 2110 | share_id: 2111 | master_key_id: 2112 | icon: 2113 | type_: 2e7835ba6311d4cb8bd47a676677fa805.md000644 0000002110 14336061324012535 0ustar00000000 000000 Image Tools 2114 | 2115 | # Tools to analyze EXIF metadata: 2116 | AnalogEXIF: https://sourceforge.net/projects/analogexif/ 2117 | ExifTool: https://exiftool.org/ 2118 | ExifTOOLGUI: https://exiftool.org/gui/ 2119 | Exif Pilot: https://www.colorpilot.com/exif.html 2120 | ExifManager: https://sourceforge.net/projects/exifmanager/ 2121 | Geosetter: https://geosetter.de/download-en/ 2122 | Metadata++: https://www.logipole.com/metadata++-en.htm 2123 | 2124 | # Tools that can remove EXIF metadata 2125 | EXIF Purge: http://www.exifpurge.com/ 2126 | 2127 | id: e7835ba6311d4cb8bd47a676677fa805 2128 | parent_id: 87bb11fb4c5e42d59249557f9c8b31ff 2129 | created_time: 2022-11-18T18:42:27.728Z 2130 | updated_time: 2022-11-18T18:48:35.483Z 2131 | is_conflict: 0 2132 | latitude: 0.00000000 2133 | longitude: 0.00000000 2134 | altitude: 0.0000 2135 | author: 2136 | source_url: 2137 | is_todo: 0 2138 | todo_due: 0 2139 | todo_completed: 0 2140 | source: joplin-desktop 2141 | source_application: net.cozic.joplin-desktop 2142 | application_data: 2143 | order: 1668753898378.5625 2144 | user_created_time: 2022-11-18T18:42:27.728Z 2145 | user_updated_time: 2022-11-18T18:48:35.483Z 2146 | encryption_cipher_text: 2147 | encryption_applied: 0 2148 | markup_language: 1 2149 | is_shared: 0 2150 | share_id: 2151 | conflict_original_id: 2152 | master_key_id: 2153 | type_: 1e8186672de324c9a9237849dc8353f83.md000644 0000003243 14336061324012350 0ustar00000000 000000 Aviation, Marine, and Space Intel 2154 | 2155 | # Aviation Sites 2156 | Radarbox24 2157 | - https://www.radarbox24.com/ 2158 | Flight Radar 24: 2159 | - https://www.flightradar24.com/ 2160 | Flight Aware: 2161 | - https://flightaware.com/ 2162 | Live Air Traffic Comms: 2163 | - https://www.liveatc.net/ 2164 | ADS-B Exchange 2165 | - https://www.adsbexchange.com/ 2166 | ## International: 2167 | Freedar (Tracking Military Aircraft in the UK): 2168 | - https://radar.freedar.uk/VirtualRadar/desktop.html 2169 | - https://military.freedar.uk/VirtualRadar/mobile.html 2170 | ## Information for different types of planes: 2171 | Airplane Tail Logo's 2172 | - https://airlinetaillogos.wordpress.com/ 2173 | Plane Spotters: 2174 | - https://www.planespotters.net/ 2175 | 2176 | # Marine Sites 2177 | Marine Traffic 2178 | - https://www.marinetraffic.com/ 2179 | 2180 | # Space Sites 2181 | Satellite Imagery: 2182 | - https://www.mapchecking.com 2183 | - https://www.phorio.com 2184 | - https://earthexplorer.usgs.gov/ 2185 | - https://apps.sentinel-hub.com/eo-browser/ 2186 | 2187 | 2188 | Live Weather Satellite Imagery: 2189 | - https://zoom.earth 2190 | 2191 | Satellites in low orbit: 2192 | - https://platform.leolabs.space/visualization 2193 | 2194 | Software for Satellite Imagery: 2195 | - Google Earth: https://www.google.com/earth/versions/ 2196 | 2197 | id: e8186672de324c9a9237849dc8353f83 2198 | parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58 2199 | created_time: 2021-07-29T04:38:44.620Z 2200 | updated_time: 2022-11-19T04:33:38.633Z 2201 | is_conflict: 0 2202 | latitude: 42.90740000 2203 | longitude: -78.81970000 2204 | altitude: 0.0000 2205 | author: 2206 | source_url: 2207 | is_todo: 0 2208 | todo_due: 0 2209 | todo_completed: 0 2210 | source: joplin-desktop 2211 | source_application: net.cozic.joplin-desktop 2212 | application_data: 2213 | order: 1662558471352 2214 | user_created_time: 2021-07-29T04:38:44.620Z 2215 | user_updated_time: 2022-11-19T04:33:38.633Z 2216 | encryption_cipher_text: 2217 | encryption_applied: 0 2218 | markup_language: 1 2219 | is_shared: 0 2220 | share_id: 2221 | conflict_original_id: 2222 | master_key_id: 2223 | type_: 1ef440c25007642f7a1efd169b3b840c3.md000644 0000002276 14336061324012525 0ustar00000000 000000 Cryptocurrency 2224 | 2225 | # Crypto Market: 2226 | 2227 | - https://coinmarketcap.com/ 2228 | - https://www.coinbase.com/explore 2229 | - https://www.binance.com/en/markets 2230 | 2231 | # Bitcoin 2232 | ### Wallet Transaction Analysis 2233 | - https://www.walletexplorer.com/ 2234 | - https://bitref.com/ 2235 | ### Blockhain Transaction Analysis 2236 | - https://www.blockchain.com/explorer 2237 | - https://blockexplorer.com/ 2238 | - https://live.blockcypher.com/ 2239 | 2240 | ### Tracking Bitcoin Addresses: 2241 | - https://intelx.io/ 2242 | - https://oxt.me/ 2243 | - https://www.bitcoinwhoswho.com/ 2244 | 2245 | # Etherium 2246 | ### Blockhain Transaction Analysis 2247 | - https://etherscan.io/ 2248 | - https://www.etherchain.org/ 2249 | 2250 | id: ef440c25007642f7a1efd169b3b840c3 2251 | parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58 2252 | created_time: 2022-06-27T20:06:07.397Z 2253 | updated_time: 2022-09-12T04:02:44.867Z 2254 | is_conflict: 0 2255 | latitude: 34.74648090 2256 | longitude: -92.28959480 2257 | altitude: 0.0000 2258 | author: 2259 | source_url: 2260 | is_todo: 0 2261 | todo_due: 0 2262 | todo_completed: 0 2263 | source: joplin-desktop 2264 | source_application: net.cozic.joplin-desktop 2265 | application_data: 2266 | order: 1656360367397 2267 | user_created_time: 2022-06-27T20:06:07.397Z 2268 | user_updated_time: 2022-09-12T04:02:44.867Z 2269 | encryption_cipher_text: 2270 | encryption_applied: 0 2271 | markup_language: 1 2272 | is_shared: 0 2273 | share_id: 2274 | conflict_original_id: 2275 | master_key_id: 2276 | type_: 1f8b79179f9a848958b21ffef03580303.md000644 0000011174 14336061324012430 0ustar00000000 000000 What Is Intelligence? What is OSINT? 2277 | 2278 | # What Is Intelligence? What is OSINT? 2279 | 2280 | Intelligence is the asset generated by collecting and analyzing data, then forming that analysis in to an actionable output, such as a report. Well-formed intelligence products can aid with predicting future actions by understanding past behaviors, help determine appropriate courses of action for attacking or defending objectives (such as critical infrastructure), or even help improve situational awareness around macro-level industry or economic trends in a business. 2281 | 2282 | Open-Source Intelligence (OSINT) refers to intelligence data gathered from public sources, and has quickly become one of the most important elements of intelligence programs for entities ranging from the Intelligence and Defense communities, to law enforcement, to businesses, and even journalists and hobbyist researchers. Common sources for OSINT collection include social media, video sharing platforms like YouTube and Vimeo, blog and news websites both the clear and dark web. 2283 | 2284 | Understanding the Intelligence Cycle is key to a successful investigation, whether you are working exclusively with open sources, or you’re analyzing classified government intelligence. The Intelligence Cycle consists of five phases, and is a looping process where findings and feedback from each iteration can be used to help feed the planning and direction that goes into the next round of investigations. The five phases of the Intelligence Cycle are: 2285 | 2286 | - **Planning and Direction:** Begin your investigation by understanding the need for data and defining specific requirements for intelligence collection and analysis, as well as identifying the scope of sources to be used for the investigation. If this is a continuation of an investigation based on past findings, leverage the previous finished intelligence product(s) from that investigation and the feedback from the intelligence consumers to drive your next steps. 2287 | - **Collection:** Gather the raw information that you need to produce your finished intelligence product. Information should be collected from all sources which are in-scope for the investigation, even if the information does not appear relevant at first. 2288 | - **Processing and Exploitation:** Convert the information you’ve collected into usable data. This can include decryption and decoding efforts, translation, data deduplication, reformatting data, and even conducting follow-up collection efforts to expand your dataset based on previously unknown selectors (search terms). 2289 | - **Analysis and Production:** This phase involves analyzing all the intelligence collected, and potentially intelligence gathered during previous efforts, to build your finished intelligence product (e.g., your intelligence report). 2290 | - **Dissemination:** Finished intelligence products should be distributed to the intended consumers of your intelligence product, so that the intelligence can be reviewed and actioned if necessary. Feedback and actions on the finished intelligence products can be used to fuel future iterations of the intelligence cycle for this case, or for future casework. 2291 | 2292 | Intelligence can be a game changer, whether you’re looking to investigate a missing person’s case, looking to understand business and marketplace competition, assess vendor and supply chain risk, or even for planning a penetration test or red team engagement. Leveraging the Intelligence Cycle, along with this notebook and other tools at your disposal, can help you be successful in generating finished intelligence for your investigations, projects, and organizations. 2293 | 2294 | # Further Reading 2295 | - The Threat Intelligence Lifecycle: https://www.recordedfuture.com/threat-intelligence-lifecycle 2296 | - Five Phashes of the Threat Intelligence Lifecycle: https://flashpoint.io/blog/threat-intelligence-lifecycle/ 2297 | - Threat Intelligence Lifecycle | Phases & Best Practices Explained: https://snyk.io/learn/threat-intelligence/threat-intelligence-lifecycle/ 2298 | - Open-Source Intelligence (OSINT) Cycle: https://securityorb.com/featured/the-open-source-intelligence-osint-cycle/ 2299 | 2300 | 2301 | 2302 | 2303 | id: f8b79179f9a848958b21ffef03580303 2304 | parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5 2305 | created_time: 2022-10-11T16:49:01.923Z 2306 | updated_time: 2022-11-19T00:26:13.392Z 2307 | is_conflict: 0 2308 | latitude: 0.00000000 2309 | longitude: 0.00000000 2310 | altitude: 0.0000 2311 | author: 2312 | source_url: 2313 | is_todo: 0 2314 | todo_due: 0 2315 | todo_completed: 0 2316 | source: joplin-desktop 2317 | source_application: net.cozic.joplin-desktop 2318 | application_data: 2319 | order: 1668807578539 2320 | user_created_time: 2022-10-11T16:49:01.923Z 2321 | user_updated_time: 2022-11-19T00:26:13.392Z 2322 | encryption_cipher_text: 2323 | encryption_applied: 0 2324 | markup_language: 1 2325 | is_shared: 0 2326 | share_id: 2327 | conflict_original_id: 2328 | master_key_id: 2329 | type_: 1 --------------------------------------------------------------------------------