Skip to content

Instantly share code, notes, and snippets.

View gitezri's full-sized avatar

Ezri Benami gitezri

View GitHub Profile
@gitezri
gitezri / zillow.py
Created May 11, 2018 19:14 — forked from scrapehero/zillow.py
Python 3 script to find real estate listings of properties up for sale on zillow.com
from lxml import html
import requests
import unicodecsv as csv
import argparse
def parse(zipcode,filter=None):
if filter=="newest":
url = "https://www.zillow.com/homes/for_sale/{0}/0_singlestory/days_sort".format(zipcode)
elif filter == "cheapest":
@gitezri
gitezri / aws_devops_prof.md
Created June 19, 2021 01:04 — forked from thu2004/aws_devops_prof.md
How I pass AWS DevOps Professional Certification exam on the first attempt!!

How I pass AWS DevOps Professional Certification exam on the first attempt!!

There are many excellence posts about this subject so I will not repeat them instead I list those at the end of this post.

I will give you which courses I took and briefly describe how I use those courses to prepare for my exam.

Exam Readiness: AWS Certified DevOps Engineer – Professional

I started with this free course to get myself an orientation of what to expect for this exam.

https://www.aws.training/Details/eLearning?id=34146

@gitezri
gitezri / cissp_notes.md
Created September 2, 2021 04:54 — forked from penafieljlm/cissp_notes.md
Personal CISSP Study Notes

CISSP Notes

CIA Triad

  • Confidentiality
    • Resources should be protected from unauthorized access
    • Prioritized by governments
    • Concepts
      • Sensitivity
        • How harmful is disclosure
  • Discretion
🔥Complete Bug Bounty Cheat Sheet🔥
XSS
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/xss.md
https://github.com/ismailtasdelen/xss-payload-list
SQLi
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/sqli.md
AWSTemplateFormatVersion: 2010-09-09
Resources:
OrdersTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: AuthorsTable_prod
AttributeDefinitions:
- AttributeName: "AuthorName"
AttributeType: "S"
- AttributeName: "BookTitle"