This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ****** SemanticTextStore.db : | |
| CREATE TABLE si_db_info ( | |
| schema_version INTEGER | |
| ); | |
| CREATE TABLE si_items ( | |
| id BLOB(16) PRIMARY KEY NOT NULL | |
| ); | |
| CREATE TABLE si_diskann_graph ( | |
| id INTEGER PRIMARY KEY, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Code by Harsh | |
| # Python program that compares the price of a product on Amazon and Flipkart using web scraping. | |
| """ | |
| First, you need to install the requests and beautifulsoup4 libraries. | |
| You can do this by running the following command in your terminal or command prompt: | |
| pip install requests beautifulsoup4 | |
| """ | |
| import requests | |
| from bs4 import BeautifulSoup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Terminal Cheat Sheet | |
| pwd # print working directory | |
| ls # list files in directory | |
| cd # change directory | |
| ~ # home directory | |
| .. # up one directory | |
| - # previous working directory | |
| help # get help | |
| -h # get help |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| from routersploit.core.exploit import * | |
| from routersploit.core.http.http_client import HTTPClient | |
| class Exploit(HTTPClient): | |
| __info__ = { | |
| "name": "D-Link Router Credential Retrieval", | |
| "description": """This module exploits a vulnerability in D-Link router httpd server. An unauthenticated attacker may retrieve plaintext authentication credentials from the system.""", | |
| "authors": ( |