All public logs
From Cramsession
Jump to navigationJump to search
Combined display of all available logs of Cramsession. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 18:27, 10 March 2026 Mflavell talk contribs created page Python on Rocky Linux (Created page with " Install python on rocky linux: sudo dnf install python3.11 -y sudo dnf install python3.11-pip -y")
- 16:59, 23 February 2026 Mflavell talk contribs created page Bash script to expand a disk partition (Created page with "#!/bin/bash # Ensure root privileges if $EUID -ne 0 ; then echo "Error: This script must be run as root." exit 1 fi # Ensure growpart is installed if ! command -v growpart &> /dev/null; then echo "Installing required tools (cloud-guest-utils)..." apt-get update -qq && apt-get install -y cloud-guest-utils > /dev/null fi echo "---------------------------------------------------" echo " Available Partitions (Filesystems only)" echo "------------------...")
- 22:02, 13 February 2026 Mflavell talk contribs created page Sales Estimates (Created page with "| Month | Customers | Avg Sessions | Monthly Revenue | | --------------- | --------- | ------------ | --------------- | | Jan | 0 | – | $0 | | Feb | 0 | – | $0 | | Mar | 2 | 100 | $1,667 | | Apr | 2 | 100 | $1,667 | | May | 3 | 120 | $3,000 | | Jun...")
- 21:52, 13 February 2026 Mflavell talk contribs created page Video Channel (Created page with "| Month | Videos | Focus | | ----- | ------ | -------------------------------------------- | | Jan | 2 | Security / compliance pain points | | Feb | 2 | Thought leadership / audit-readiness guides | | Mar | 2 | MVP launch demos & “how to deploy in 1 hour” | | Apr | 2 | Product walkthroughs / versioning features | | May | 2 | Customer story / internal app catalog demo | | Jun |...")
- 21:51, 13 February 2026 Mflavell talk contribs created page Webdesk Marketing (Created page with " Video Channel Sales Estimates")
- 16:04, 9 February 2026 Mflavell talk contribs created page AWS - Cloudtrail (Created page with " Cloudtrail should be configured to capture every API call. Coundtrail may be the first target of a bad actor: ** Disablining cloud trail is often a top prioirty of bad actors to "cover their trcks" ** The best way to prevent manimulation of log files is through the use of an SCP - Service control policy. *** The SCP can be pushed down from the top if multiple accounts are involced. Another method is to stop the ability to turn off cloudtrail: ** This is done by c...")
- 17:37, 6 February 2026 Mflavell talk contribs created page Startup feedback loop (Created page with "MVP - Minium viable product starts the loop * Build - The product * Measure - The product adoption * Learn - Learn from from the measurements (Feed a new build cycle)")
- 17:23, 6 February 2026 Mflavell talk contribs uploaded a new version of File:Radio.png
- 02:48, 5 February 2026 Mflavell talk contribs created page Webdesk Notes (Created page with "Why did service fail")
- 02:35, 5 February 2026 Mflavell talk contribs created page Why did a service fail (Created page with " Get the last 100 lines: journalctl -xeu webdesk.service")
- 17:08, 3 February 2026 Mflavell talk contribs created page The Dirty Dozen (Created page with "Cybersecurity > The Dirty Dozen Origionally developed for Aviation but applies to business processes in cybersecurity. Dirty_dozen.JPG")
- 17:05, 3 February 2026 Mflavell talk contribs created page File:Dirty dozen.JPG
- 17:05, 3 February 2026 Mflavell talk contribs uploaded File:Dirty dozen.JPG
- 21:23, 12 December 2025 Mflavell talk contribs created page Bash script to delete old logs (Created page with " #!/bin/bash # Directory to clean up (change this to the target directory) TARGET_DIR="/path/to/your/directory" # Find and delete files starting with wd_index older than 7 days find "$TARGET_DIR" -type f -name "log_start_*" -mtime +7 -exec rm -f {} \; deletes files in TARGET_DIR that start with log_start older than 7 days")
- 21:21, 12 December 2025 Mflavell talk contribs created page Bash Scripts (Created page with "Computer Notes > Linux > Bash Scripts")
- 18:25, 8 December 2025 Mflavell talk contribs created page Generate requirements.txt (Created page with "in PyCharm terminal pip freeze > requirements.txt")
- 17:32, 5 December 2025 Mflavell talk contribs created page CURL (Created page with "= Using CURL to test API's =")
- 00:37, 12 November 2025 Mflavell talk contribs created page Starting a Virtual environment in python (Created page with "Computer Notes > Python > Starting a Virtual environment in python")
- 18:03, 11 November 2025 Mflavell talk contribs created page Python - Running a server without terminating (Created page with "nohup python3 ''app_name.py'' &")
- 20:24, 28 October 2025 Mflavell talk contribs created page Python - Installing from Source on Linux (Created page with "Computer Notes > Python > Python - Installing from Source on Linux Download Python-'''X'''.tgz SCP file to server unzip the file with ''gunzip'' untar the file ''tar -xvf'' run the build commands from the directory ./configure make make test")
- 20:20, 28 October 2025 Mflavell talk contribs created page Python (Created page with "[Python - Installing from Source on Linux]")
- 21:20, 1 October 2025 Mflavell talk contribs created page Add an additional Wikipedia site / AWS / Apache (Created page with "= Configure Route 53 to foreard traffic = 1) Login to the Rounte 53 console. 2) Select "Hosted Zones". 3) Select the dns entry you wish to add. 4) Select Create record. 5) Input the public IP of the servers ENI. 6) Click Create records.")
- 05:36, 23 September 2025 Mflavell talk contribs created page Open LDAP (Created page with "= Creating and ADMIN user = == Generate a SHA password == slappasswd provide password Save the resulting SHA == Create the LDIF File == Create a file in nano dn: uid=adminuser,dc=southbaytechnology,dc=com objectClass: inetOrgPerson objectClass: organizationalPerson objectClass: person cn: Admin User sn: User uid: admin userPassword: {SSHA}7x6qOrJlHQI+mONuYn+W2HTG/xHQVEL2 == Add the user == ldapadd -x -W -D "cn=admin,dc=southbaytechnology,dc=com" -f admi...")
- 17:32, 6 August 2025 Mflavell talk contribs created page Find internal IP address on Linux (Created page with "Computer Notes > Linux > Find internal IP address on Linux ip addr")
- 19:52, 5 August 2025 Mflavell talk contribs created page Login Message (Created page with "For messages after login: /etc/motd For messages before login: /etc/issue [https://superuser.com/questions/290294/how-to-display-a-message-before-login]")
- 17:08, 24 July 2025 Mflavell talk contribs created page IPTables (Created page with "== list rules == iptables -L -n")
- 16:36, 24 July 2025 Mflavell talk contribs created page SQLite Cheat sheet (Created page with " Exit .exit Display Tables .tables Clear display .shell clear Make format readable .mode column Display a table select * from ''whatever'';")
- 16:21, 24 July 2025 Mflavell talk contribs created page SSP Data Storage (Created page with " Data is stored in an SQLite3 database to access the database: sqlite3 /config/db/operator_info.db It is useful to use: .mode column to make data more readable. some useful commands. .tables '''displays tables''' .shell clear '''clears the screen'''")
- 17:16, 10 July 2025 Mflavell talk contribs created page Cyber Kill Chain (Created page with " The cyber kill chain is a security framework developed by Lockheed Martin to model the stages of a cyberattack. It helps organizations understand how attacks progress and how to defend against them by identifying key stages and vulnerabilities. The framework breaks down an attack into a series of phases, allowing security teams to focus on preventing attacks at each stage. 1. Reconnaissance: Attackers gather information about the target, including publicly available da...")
- 16:24, 23 June 2025 Mflavell talk contribs created page Software Development Theory (Created page with " * Focus on the "WOW" First ::* Rather than make something faster/more efficient focus on something that will make the product stand out. * Make the product Cloud agnostic ::* Many business are putting "cloud first" ::* Some cannot use the cloud, or are scared given data breaches uptime. * Make products operating system agnostic. ::* Just make it run.")
- 03:12, 21 June 2025 Mflavell talk contribs created page How Wars are won (Created page with "Even as we head into twenty-first-century warfare, thirteen time-tested rules for waging war remain relevant. Both timely and timeless, How Wars Are Won illuminates the thirteen essential rules for success on the battlefield that have evolved from ancient times until the present day. Acclaimed military historian Bevin Alexander’s incisive and vivid analyses of famous battles throughout the ages show how the greatest commanders—from Alexander the Great to Douglas Ma...")
- 21:30, 20 June 2025 Mflavell talk contribs created page The biggest data breach is lost talent (Created page with "* Layoffs create bad feeling in the company ::* Loss of productivity in remaining employees ::* Good talent leaves fearing they are next. ::* Becomes every man for himself. * Knowledge is lost ::* Good ideas that now go to a competitor. ::* Data is deleted and not passed along - why should they. ::* Legal agreements NDA / NC agreements are useless - can you prove when and idea was born?")
- 21:19, 20 June 2025 Mflavell talk contribs created page Find LocalSettings.php (Created page with " Commonly located here /var/www/html/mediawiki")
- 21:17, 20 June 2025 Mflavell talk contribs created page Make a Wiki Private (Created page with "Disable reading by Anonymous users: Edit '''LocalSettings.php''' # Disable reading by anonymous users $wgGroupPermissions['*']['read'] = false;")
- 21:15, 20 June 2025 Mflavell talk contribs created page MediaWiki (Created page with "[Computer notes] > MediaWiki [Make a Wiki Private]")
- 20:15, 20 June 2025 Mflavell talk contribs created page Five elements of business success (Created page with " 1) Build products people love 2) Adoption over monitorization 3) Cultivate a sustainable competitive advantage 4) Make products simple a clear 5) Make decisions fast.")
- 22:19, 9 June 2025 Mflavell talk contribs created page AWS IAM (Created page with "Study Guides > AWS Cybersecurity Notes > AWS IAM = IAM Introduction = * Polices rule books :* These define what actions are allowed and denied on resources. IAM Supports MFA and Federation. Common terms: * Resources - Something inside the AWS account. * Enteritis - Can be an IAM user or federated user. * Identities - Used to identify who id doing something. These are users, groups and roles.")
- 16:56, 9 June 2025 Mflavell talk contribs created page Force curl to accept certificates (Created page with "use -k to force curl to accept certificates.")
- 16:49, 9 June 2025 Mflavell talk contribs created page Dump public certs to a file (Created page with "Use the command: openssl s_client -connect www.google.com:443 -showcerts > certs.txt certs will be in certs.txt")
- 23:12, 2 June 2025 Mflavell talk contribs created page Cloud HSM (Created page with " = Overview = * This is a managed services for data encryption. :* HSM = Hardware Security Module [https://en.wikipedia.org/wiki/Hardware_security_module] :* Validated to FIPS 140-2 Level 3 :* Generate encryption keys")
- 00:59, 2 June 2025 Mflavell talk contribs created page File:Radio.png
- 00:59, 2 June 2025 Mflavell talk contribs uploaded File:Radio.png
- 00:57, 2 June 2025 Mflavell talk contribs deleted page File:Matt.jpeg (content was: "", and the only contributor was "Mflavell" (talk))
- 00:52, 2 June 2025 Mflavell talk contribs moved page Tech Notes to Computer Notes
- 23:52, 1 June 2025 Mflavell talk contribs deleted page File:Icon.png (content before blanking was: "")
- 23:09, 29 May 2025 Mflavell talk contribs created page Amazon KMS (Created page with "Study Guides > AWS Cybersecurity Notes > Amazon KMS = Overview = * Data encryption is the most critical aspect. * Must know KMS and the API calls used in the service == Customer Master Keys == * Contain key material for encryption and decryption. * CMKs are managed in KMS :* KMS provides a way to store and manage keys. * They are used to manage encryption keys for data. * KMS protects the CMKs * CMKs integrate with AWS services. :* They can also be...")
- 21:48, 29 May 2025 Mflavell talk contribs created page List open ports in Linux (Created page with " == Netstat == If netstat is not installed run: sudo apt install net-tools then you can run: netstat -tulnp == lsof == Display open files and ports: lsof -i -P -n")
- 16:45, 21 May 2025 Mflavell talk contribs created page Create a SOCKS proxy with SSH (Created page with "Tech Notes > Linux > Create a SOCKS proxy with SSH === Problem === SSH access is provided to a jump box however you need HTTP / HTTPS access to the private network. === Solution === SSH can be used to create a socks proxy using the following command: ssh -F /dev/null -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '''username'''@''''ip or fqdn''' -ND'''proxy port''' Provide the bowser the the socks infomrmation Proxy: 127.0.0.1 Port: '''pro...")
- 23:48, 20 May 2025 Mflavell talk contribs created page Amazon Inspector (Created page with "Study Guides > AWS Cybersecurity Notes > Amazon Inspector This is an AWS security assessment tool. * Helps find vulnerabilities and security issues. * Designed to automate the assessment.")
- 20:33, 20 May 2025 Mflavell talk contribs created page What Process is using a Port on Linux (Created page with "Tech Notes > Linux > What Process is using a Port on Linux For a specific port: netstat -tulpn | grep ''''port''' For everything: netstat -tulpn")