grep -E '^.{10,}$' rockyou.txt | grep -E '^[a-zA-Z0-9_]+$' | grep -E '[[:upper:]]{1,}' | grep -E '[[:lower:]]{1,}' | grep -E '[[:digit:]]{1,}' > filtered.txt
unshadow passwd shadow > ptimmers
john --rules ptimmers --wordlist=/home/elias/filtered.txt
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
{ | |
"openapi": "3.0.0", | |
"info": { | |
"title": "Example", | |
"description": "Example", | |
"version": "1.0.0" | |
}, | |
"paths": { | |
"/cat123": { | |
"get": { |
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
type Query { | |
""" | |
Get user by user name | |
Equivalent to GET /user/{username} | |
""" | |
customUserByName( | |
"""The name that needs to be fetched. Use user1 for testing. """ | |
username: String! | |
): User |
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
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "x", function() { return VERSION; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return PUBNUB_SUBSCRIBE_KEY; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "q", function() { return LOCALSTORAGE_VIEWMODEKEY; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return URL_BASE; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return API_BASE; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return SENTRY_URL; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "L", function() { return PDF_JS_RESOURCES_PATH; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return ASSET_ICON_MAPPING; }); | |
/* harmony export (binding) */ __webpack_require__.d(__webpack_expor |
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
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return CONSTANTS; }); | |
var SCHEMA = __webpack_require__(183).default; | |
var VERSION = __webpack_require__(1256).version; | |
var CURRENT_HOST = window.location.protocol + "//" + window.location.host; | |
var BADGE_ICON_PREFIX = "badge-"; | |
var CONSTANTS = (function () { | |
function CONSTANTS() { | |
} | |
CONSTANTS.VERSION = VERSION; | |
CONSTANTS.PUBNUB_SUBSCRIBE_KEY = window.__env.PUBNUB_SUBSCRIBE_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
Geef de naam en de prijs van de meest verkochte optie. Geef tevens ook het aantal keren dat deze optie verkocht werd (in dezelfde query). | |
SELECT naam, prijs, count(autos_chassisNR) AS aantal | |
FROM opties | |
INNER JOIN autos_has_opties ON opties_id=id | |
GROUP by opties_id | |
ORDER BY aantal DESC limit 1; | |
Geef het aantal verschillende modellen van auto’s die verkocht werden door verkoper Bram. | |
SELECT COUNT(DISTINCT model) AS aantal_versch_modellen |