Query 13.11.19 - 86 Results
inurl:/elfinder/elfinder.html+intitle:"elFinder 2.0"
import os
from datetime import datetime
import pandas as pd
from xlsxwriter.workbook import Workbook
import csv
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
| #!/bin/bash | |
| echo "Start Installation" | |
| sudo true | |
| sudo apt update | |
| if [ $? -eq 0 ]; then | |
| echo "Updated sucessfully" | |
| else | |
| echo "Failed" | |
| exit 1 |
1.1 Explore Visible Content
- Enable passive spidering/monitoring
- Browse the entire application in the normal way (visiting every link/URL; interacting with every function)
- Browse with JS enabled/disabled
- Browse with Cookies enabled/disabled
- If authentication is in use: Create an account, use this account to access protected functionality
- While browsing monitor requests/responses understanding kinds of data
Weeks of programming can save you hours of planning.
Indeed, the ratio of time spent reading versus writing is well over 10 to 1. We are constantly reading old code as part of the effort to write new code. ...[Therefore,] making it easy to read makes it easier to write.
Clean code is not written by following a set of rules. You don’t become a software craftsman by learning a list of heuristics. Professionalism and craftsmanship come from values that drive disciplines.
And last but not least sometimes i am reading my old code and get the feeling my past-self hates my future-self.
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
| #!/bin/bash | |
| if [ $# -eq 0 ] | |
| then | |
| echo "No arguments supplied!" | |
| echo "Usage:" | |
| echo "./nmap_to_html <IP Range>" | |
| exit 1 | |
| fi |