├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-gemset ├── .ruby-version ├── .travis.yml ├── CHANGELOG_BETWEEN_TAGS.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── Vagrantfile ├── bin ├── pwn ├── pwn_android_war_dialer ├── pwn_autoinc_version ├── pwn_aws_describe_resources ├── pwn_bdba_groups ├── pwn_bdba_scan ├── pwn_burp_suite_pro_active_rest_api_scan ├── pwn_burp_suite_pro_active_scan ├── pwn_char_base64_encoding ├── pwn_char_dec_encoding ├── pwn_char_hex_escaped_encoding ├── pwn_char_html_entity_encoding ├── pwn_char_unicode_escaped_encoding ├── pwn_char_url_encoding ├── pwn_crt_sh ├── pwn_defectdojo_engagement_create ├── pwn_defectdojo_importscan ├── pwn_defectdojo_reimportscan ├── pwn_diff_csv_files_w_column_exclude ├── pwn_domain_reversewhois ├── pwn_fuzz_net_app_proto ├── pwn_gqrx_scanner ├── pwn_jenkins_create_job ├── pwn_jenkins_create_view ├── pwn_jenkins_install_plugin ├── pwn_jenkins_thinBackup_aws_s3 ├── pwn_jenkins_update_plugins ├── pwn_jenkins_useradd ├── pwn_mail_agent ├── pwn_msf_postgres_login ├── pwn_nessus_cloud_scan_crud ├── pwn_nessus_cloud_vulnscan ├── pwn_nexpose ├── pwn_nmap_discover_tcp_udp ├── pwn_openvas_vulnscan ├── pwn_pastebin_sample_filter ├── pwn_phone ├── pwn_rdoc_to_jsonl ├── pwn_sast ├── pwn_serial_check_voicemail ├── pwn_serial_msr206 ├── pwn_serial_qualcomm_commands ├── pwn_serial_son_micro_sm132_rfid ├── pwn_shodan_graphql_introspection ├── pwn_shodan_search ├── pwn_simple_http_server ├── pwn_web_cache_deception ├── pwn_www_checkip ├── pwn_www_uri_buster ├── pwn_xss_dom_vectors ├── pwn_zaproxy_active_rest_api_scan └── pwn_zaproxy_active_scan ├── documentation ├── PWN.png ├── PWN_Contributors_and_Users.png ├── fax-spectrogram.png ├── fax-waveform.png ├── frozen_string_literal_files_changed_from_false_to_true.txt ├── pwn_android_war_dialer_session.png ├── pwn_install.png ├── pwn_wallpaper.jpg ├── ringing-spectrogram.png └── ringing-waveform.png ├── etc ├── systemd │ ├── msfrpcd.service │ └── openvas.service └── userland │ ├── aws │ ├── apache2 │ │ ├── jenkins_443.conf │ │ ├── jenkins_80.conf │ │ ├── openvas_443.conf │ │ ├── openvas_80.conf │ │ ├── sast_443.conf │ │ ├── sast_80.conf │ │ └── vagrant.yaml.EXAMPLE │ ├── arachni │ │ ├── navigation-REST.instruct.EXAMPLE │ │ └── navigation.instruct.EXAMPLE │ ├── burpsuite │ │ ├── navigation.instruct.EXAMPLE │ │ └── vagrant.yaml.EXAMPLE │ ├── defectdojo │ │ └── vagrant.yaml.EXAMPLE │ ├── jenkins │ │ ├── inject_build_envs.sh │ │ ├── jenkins │ │ ├── jobs │ │ │ ├── pipeline-pwntemplate.xml │ │ │ ├── pipeline-selfupdate.xml │ │ │ ├── pwntemplate-DOMAIN-burpsuite.xml │ │ │ ├── pwntemplate-DOMAIN-owasp_zap.xml │ │ │ ├── pwntemplate-DOMAIN-ssllabs-scan.xml │ │ │ ├── pwntemplate-GITREPO_BRANCH-sast.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_discovery_scan_tcp_udp_65k.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_xml_results_searchsploit.xml │ │ │ ├── pwntemplate-NETWORKRANGE-openvas.xml │ │ │ ├── selfupdate-exploit-db.xml │ │ │ ├── selfupdate-gem.xml │ │ │ ├── selfupdate-jenkins_plugins.xml │ │ │ ├── selfupdate-metasploit.xml │ │ │ ├── selfupdate-nmap_all_live_hosts.xml │ │ │ ├── selfupdate-openvas_sync.xml │ │ │ ├── selfupdate-openvas_wrappers.xml │ │ │ ├── selfupdate-os.xml │ │ │ ├── selfupdate-pwn.xml │ │ │ ├── selfupdate-rvm.xml │ │ │ ├── selfupdate-ssllabs-scan.xml │ │ │ └── selfupdate-wpscan.xml │ │ ├── jobs_userland │ │ │ └── .gitkeep │ │ ├── log_parser_rules │ │ │ ├── arachni.rules │ │ │ ├── sast.rules │ │ │ ├── self_update.rules │ │ │ ├── ssllabs-scan.rules │ │ │ ├── system_maintenance.rules │ │ │ └── wpscan.rules │ │ └── vagrant.yaml.EXAMPLE │ ├── letsencrypt │ │ └── vagrant.yaml.EXAMPLE │ ├── metasploit │ │ └── vagrant.yaml.EXAMPLE │ ├── nessus │ │ └── vagrant.yaml.EXAMPLE │ ├── openvas │ │ └── vagrant.yaml.EXAMPLE │ ├── owasp_zap │ │ └── navigation.instruct.EXAMPLE │ ├── postgres │ │ └── vagrant.yaml.EXAMPLE │ ├── recon-ng │ │ └── vagrant.yaml.EXAMPLE │ └── vagrant.yaml.EXAMPLE │ ├── docker │ ├── apache2 │ │ ├── jenkins_443.conf │ │ ├── jenkins_80.conf │ │ ├── openvas_443.conf │ │ ├── openvas_80.conf │ │ ├── sast_443.conf │ │ ├── sast_80.conf │ │ └── vagrant.yaml.EXAMPLE │ ├── arachni │ │ ├── navigation-REST.instruct.EXAMPLE │ │ └── navigation.instruct.EXAMPLE │ ├── burpsuite │ │ ├── navigation.instruct.EXAMPLE │ │ └── vagrant.yaml.EXAMPLE │ ├── defectdojo │ │ └── vagrant.yaml.EXAMPLE │ ├── jenkins │ │ ├── inject_build_envs.sh │ │ ├── jenkins │ │ ├── jobs │ │ │ ├── pipeline-pwntemplate.xml │ │ │ ├── pipeline-selfupdate.xml │ │ │ ├── pwntemplate-DOMAIN-burpsuite.xml │ │ │ ├── pwntemplate-DOMAIN-owasp_zap.xml │ │ │ ├── pwntemplate-DOMAIN-ssllabs-scan.xml │ │ │ ├── pwntemplate-GITREPO_BRANCH-sast.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_discovery_scan_tcp_udp_65k.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_xml_results_searchsploit.xml │ │ │ ├── pwntemplate-NETWORKRANGE-openvas.xml │ │ │ ├── selfupdate-exploit-db.xml │ │ │ ├── selfupdate-gem.xml │ │ │ ├── selfupdate-jenkins_plugins.xml │ │ │ ├── selfupdate-metasploit.xml │ │ │ ├── selfupdate-nmap_all_live_hosts.xml │ │ │ ├── selfupdate-openvas_sync.xml │ │ │ ├── selfupdate-openvas_wrappers.xml │ │ │ ├── selfupdate-os.xml │ │ │ ├── selfupdate-pwn.xml │ │ │ ├── selfupdate-rvm.xml │ │ │ ├── selfupdate-ssllabs-scan.xml │ │ │ └── selfupdate-wpscan.xml │ │ ├── jobs_userland │ │ │ └── .gitkeep │ │ ├── log_parser_rules │ │ │ ├── arachni.rules │ │ │ ├── sast.rules │ │ │ ├── self_update.rules │ │ │ ├── ssllabs-scan.rules │ │ │ ├── system_maintenance.rules │ │ │ └── wpscan.rules │ │ └── vagrant.yaml.EXAMPLE │ ├── letsencrypt │ │ └── vagrant.yaml.EXAMPLE │ ├── metasploit │ │ └── vagrant.yaml.EXAMPLE │ ├── nessus │ │ └── vagrant.yaml.EXAMPLE │ ├── openvas │ │ └── vagrant.yaml.EXAMPLE │ ├── owasp_zap │ │ └── navigation.instruct.EXAMPLE │ ├── postgres │ │ └── vagrant.yaml.EXAMPLE │ └── recon-ng │ │ └── vagrant.yaml.EXAMPLE │ ├── qemu │ ├── apache2 │ │ ├── jenkins_443.conf │ │ ├── jenkins_80.conf │ │ ├── openvas_443.conf │ │ ├── openvas_80.conf │ │ ├── sast_443.conf │ │ ├── sast_80.conf │ │ └── vagrant.yaml.EXAMPLE │ ├── arachni │ │ ├── navigation-REST.instruct.EXAMPLE │ │ └── navigation.instruct.EXAMPLE │ ├── burpsuite │ │ ├── navigation.instruct.EXAMPLE │ │ └── vagrant.yaml.EXAMPLE │ ├── defectdojo │ │ └── vagrant.yaml.EXAMPLE │ ├── jenkins │ │ ├── inject_build_envs.sh │ │ ├── jenkins │ │ ├── jobs │ │ │ ├── pipeline-pwntemplate.xml │ │ │ ├── pipeline-selfupdate.xml │ │ │ ├── pwntemplate-DOMAIN-burpsuite.xml │ │ │ ├── pwntemplate-DOMAIN-owasp_zap.xml │ │ │ ├── pwntemplate-DOMAIN-ssllabs-scan.xml │ │ │ ├── pwntemplate-GITREPO_BRANCH-sast.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_discovery_scan_tcp_udp_65k.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_xml_results_searchsploit.xml │ │ │ ├── pwntemplate-NETWORKRANGE-openvas.xml │ │ │ ├── selfupdate-exploit-db.xml │ │ │ ├── selfupdate-gem.xml │ │ │ ├── selfupdate-jenkins_plugins.xml │ │ │ ├── selfupdate-metasploit.xml │ │ │ ├── selfupdate-nmap_all_live_hosts.xml │ │ │ ├── selfupdate-openvas_sync.xml │ │ │ ├── selfupdate-openvas_wrappers.xml │ │ │ ├── selfupdate-os.xml │ │ │ ├── selfupdate-pwn.xml │ │ │ ├── selfupdate-rvm.xml │ │ │ ├── selfupdate-ssllabs-scan.xml │ │ │ └── selfupdate-wpscan.xml │ │ ├── jobs_userland │ │ │ └── .gitkeep │ │ ├── log_parser_rules │ │ │ ├── arachni.rules │ │ │ ├── sast.rules │ │ │ ├── self_update.rules │ │ │ ├── ssllabs-scan.rules │ │ │ ├── system_maintenance.rules │ │ │ └── wpscan.rules │ │ └── vagrant.yaml.EXAMPLE │ ├── letsencrypt │ │ └── vagrant.yaml.EXAMPLE │ ├── metasploit │ │ └── vagrant.yaml.EXAMPLE │ ├── nessus │ │ └── vagrant.yaml.EXAMPLE │ ├── openvas │ │ └── vagrant.yaml.EXAMPLE │ ├── owasp_zap │ │ └── navigation.instruct.EXAMPLE │ ├── postgres │ │ └── vagrant.yaml.EXAMPLE │ └── recon-ng │ │ └── vagrant.yaml.EXAMPLE │ ├── ruby-gem │ ├── apache2 │ │ ├── jenkins_443.conf │ │ ├── jenkins_80.conf │ │ ├── openvas_443.conf │ │ ├── openvas_80.conf │ │ ├── sast_443.conf │ │ ├── sast_80.conf │ │ └── vagrant.yaml.EXAMPLE │ ├── arachni │ │ ├── navigation-REST.instruct.EXAMPLE │ │ └── navigation.instruct.EXAMPLE │ ├── burpsuite │ │ ├── navigation.instruct.EXAMPLE │ │ └── vagrant.yaml.EXAMPLE │ ├── defectdojo │ │ └── vagrant.yaml.EXAMPLE │ ├── jenkins │ │ ├── inject_build_envs.sh │ │ ├── jenkins │ │ ├── jobs │ │ │ ├── pipeline-pwntemplate.xml │ │ │ ├── pipeline-selfupdate.xml │ │ │ ├── pwntemplate-DOMAIN-burpsuite.xml │ │ │ ├── pwntemplate-DOMAIN-owasp_zap.xml │ │ │ ├── pwntemplate-DOMAIN-ssllabs-scan.xml │ │ │ ├── pwntemplate-GITREPO_BRANCH-sast.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_discovery_scan_tcp_udp_65k.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_xml_results_searchsploit.xml │ │ │ ├── pwntemplate-NETWORKRANGE-openvas.xml │ │ │ ├── selfupdate-exploit-db.xml │ │ │ ├── selfupdate-gem.xml │ │ │ ├── selfupdate-jenkins_plugins.xml │ │ │ ├── selfupdate-metasploit.xml │ │ │ ├── selfupdate-nmap_all_live_hosts.xml │ │ │ ├── selfupdate-openvas_sync.xml │ │ │ ├── selfupdate-openvas_wrappers.xml │ │ │ ├── selfupdate-os.xml │ │ │ ├── selfupdate-pwn.xml │ │ │ ├── selfupdate-rvm.xml │ │ │ ├── selfupdate-ssllabs-scan.xml │ │ │ └── selfupdate-wpscan.xml │ │ ├── jobs_userland │ │ │ └── .gitkeep │ │ ├── log_parser_rules │ │ │ ├── arachni.rules │ │ │ ├── sast.rules │ │ │ ├── self_update.rules │ │ │ ├── ssllabs-scan.rules │ │ │ ├── system_maintenance.rules │ │ │ └── wpscan.rules │ │ └── vagrant.yaml.EXAMPLE │ ├── letsencrypt │ │ └── vagrant.yaml.EXAMPLE │ ├── metasploit │ │ └── vagrant.yaml.EXAMPLE │ ├── nessus │ │ └── vagrant.yaml.EXAMPLE │ ├── openvas │ │ └── vagrant.yaml.EXAMPLE │ ├── owasp_zap │ │ └── navigation.instruct.EXAMPLE │ ├── postgres │ │ └── vagrant.yaml.EXAMPLE │ └── recon-ng │ │ └── vagrant.yaml.EXAMPLE │ ├── virtualbox │ ├── apache2 │ │ ├── jenkins_443.conf │ │ ├── jenkins_80.conf │ │ ├── openvas_443.conf │ │ ├── openvas_80.conf │ │ ├── sast_443.conf │ │ ├── sast_80.conf │ │ └── vagrant.yaml.EXAMPLE │ ├── arachni │ │ ├── navigation-REST.instruct.EXAMPLE │ │ └── navigation.instruct.EXAMPLE │ ├── burpsuite │ │ ├── navigation.instruct.EXAMPLE │ │ └── vagrant.yaml.EXAMPLE │ ├── defectdojo │ │ └── vagrant.yaml.EXAMPLE │ ├── jenkins │ │ ├── inject_build_envs.sh │ │ ├── jenkins │ │ ├── jobs │ │ │ ├── pipeline-pwntemplate.xml │ │ │ ├── pipeline-selfupdate.xml │ │ │ ├── pwntemplate-DOMAIN-burpsuite.xml │ │ │ ├── pwntemplate-DOMAIN-owasp_zap.xml │ │ │ ├── pwntemplate-DOMAIN-ssllabs-scan.xml │ │ │ ├── pwntemplate-GITREPO_BRANCH-sast.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_discovery_scan_tcp_udp_65k.xml │ │ │ ├── pwntemplate-NETWORKRANGE-nmap_xml_results_searchsploit.xml │ │ │ ├── pwntemplate-NETWORKRANGE-openvas.xml │ │ │ ├── selfupdate-exploit-db.xml │ │ │ ├── selfupdate-gem.xml │ │ │ ├── selfupdate-jenkins_plugins.xml │ │ │ ├── selfupdate-metasploit.xml │ │ │ ├── selfupdate-nmap_all_live_hosts.xml │ │ │ ├── selfupdate-openvas_sync.xml │ │ │ ├── selfupdate-openvas_wrappers.xml │ │ │ ├── selfupdate-os.xml │ │ │ ├── selfupdate-pwn.xml │ │ │ ├── selfupdate-rvm.xml │ │ │ ├── selfupdate-ssllabs-scan.xml │ │ │ └── selfupdate-wpscan.xml │ │ ├── jobs_userland │ │ │ └── .gitkeep │ │ ├── log_parser_rules │ │ │ ├── arachni.rules │ │ │ ├── sast.rules │ │ │ ├── self_update.rules │ │ │ ├── ssllabs-scan.rules │ │ │ ├── system_maintenance.rules │ │ │ └── wpscan.rules │ │ └── vagrant.yaml.EXAMPLE │ ├── letsencrypt │ │ └── vagrant.yaml.EXAMPLE │ ├── metasploit │ │ └── vagrant.yaml.EXAMPLE │ ├── nessus │ │ └── vagrant.yaml.EXAMPLE │ ├── openvas │ │ └── vagrant.yaml.EXAMPLE │ ├── owasp_zap │ │ └── navigation.instruct.EXAMPLE │ ├── postgres │ │ └── vagrant.yaml.EXAMPLE │ ├── recon-ng │ │ └── vagrant.yaml.EXAMPLE │ └── vagrant.yaml.EXAMPLE │ └── vmware │ ├── apache2 │ ├── jenkins_443.conf │ ├── jenkins_80.conf │ ├── openvas_443.conf │ ├── openvas_80.conf │ ├── sast_443.conf │ ├── sast_80.conf │ └── vagrant.yaml.EXAMPLE │ ├── arachni │ ├── navigation-REST.instruct.EXAMPLE │ └── navigation.instruct.EXAMPLE │ ├── burpsuite │ ├── navigation.instruct.EXAMPLE │ └── vagrant.yaml.EXAMPLE │ ├── defectdojo │ └── vagrant.yaml.EXAMPLE │ ├── jenkins │ ├── inject_build_envs.sh │ ├── jenkins │ ├── jobs │ │ ├── pipeline-pwntemplate.xml │ │ ├── pipeline-selfupdate.xml │ │ ├── pwntemplate-DOMAIN-burpsuite.xml │ │ ├── pwntemplate-DOMAIN-owasp_zap.xml │ │ ├── pwntemplate-DOMAIN-ssllabs-scan.xml │ │ ├── pwntemplate-GITREPO_BRANCH-sast.xml │ │ ├── pwntemplate-NETWORKRANGE-nmap_discovery_scan_tcp_udp_65k.xml │ │ ├── pwntemplate-NETWORKRANGE-nmap_xml_results_searchsploit.xml │ │ ├── pwntemplate-NETWORKRANGE-openvas.xml │ │ ├── selfupdate-exploit-db.xml │ │ ├── selfupdate-gem.xml │ │ ├── selfupdate-jenkins_plugins.xml │ │ ├── selfupdate-metasploit.xml │ │ ├── selfupdate-nmap_all_live_hosts.xml │ │ ├── selfupdate-openvas_sync.xml │ │ ├── selfupdate-openvas_wrappers.xml │ │ ├── selfupdate-os.xml │ │ ├── selfupdate-pwn.xml │ │ ├── selfupdate-rvm.xml │ │ ├── selfupdate-ssllabs-scan.xml │ │ └── selfupdate-wpscan.xml │ ├── jobs_userland │ │ └── .gitkeep │ ├── log_parser_rules │ │ ├── arachni.rules │ │ ├── sast.rules │ │ ├── self_update.rules │ │ ├── ssllabs-scan.rules │ │ ├── system_maintenance.rules │ │ └── wpscan.rules │ └── vagrant.yaml.EXAMPLE │ ├── letsencrypt │ └── vagrant.yaml.EXAMPLE │ ├── metasploit │ └── vagrant.yaml.EXAMPLE │ ├── nessus │ └── vagrant.yaml.EXAMPLE │ ├── openvas │ └── vagrant.yaml.EXAMPLE │ ├── owasp_zap │ └── navigation.instruct.EXAMPLE │ ├── postgres │ └── vagrant.yaml.EXAMPLE │ ├── recon-ng │ └── vagrant.yaml.EXAMPLE │ └── vagrant.yaml.EXAMPLE ├── find_latest_gem_versions_per_Gemfile.sh ├── git_commit_test_reinit_gem.sh ├── install.sh ├── lib ├── pwn.rb └── pwn │ ├── ai.rb │ ├── ai │ ├── grok.rb │ ├── introspection.rb │ ├── ollama.rb │ └── open_ai.rb │ ├── aws.rb │ ├── aws │ ├── acm.rb │ ├── api_gateway.rb │ ├── app_stream.rb │ ├── application_auto_scaling.rb │ ├── application_discovery_service.rb │ ├── auto_scaling.rb │ ├── batch.rb │ ├── budgets.rb │ ├── cloud_formation.rb │ ├── cloud_front.rb │ ├── cloud_hsm.rb │ ├── cloud_search.rb │ ├── cloud_search_domain.rb │ ├── cloud_trail.rb │ ├── cloud_watch.rb │ ├── cloud_watch_events.rb │ ├── cloud_watch_logs.rb │ ├── code_build.rb │ ├── code_commit.rb │ ├── code_deploy.rb │ ├── code_pipeline.rb │ ├── cognito_identity.rb │ ├── cognito_identity_provider.rb │ ├── cognito_sync.rb │ ├── config_service.rb │ ├── data_pipleline.rb │ ├── database_migration_service.rb │ ├── device_farm.rb │ ├── direct_connect.rb │ ├── directory_service.rb │ ├── dynamo_db.rb │ ├── dynamo_db_streams.rb │ ├── ec2.rb │ ├── ecr.rb │ ├── ecs.rb │ ├── efs.rb │ ├── elasti_cache.rb │ ├── elastic_beanstalk.rb │ ├── elastic_load_balancing.rb │ ├── elastic_load_balancing_v2.rb │ ├── elastic_transcoder.rb │ ├── elasticsearch_service.rb │ ├── emr.rb │ ├── firehose.rb │ ├── game_lift.rb │ ├── glacier.rb │ ├── health.rb │ ├── iam.rb │ ├── import_export.rb │ ├── inspector.rb │ ├── iot.rb │ ├── iot_data_plane.rb │ ├── kinesis.rb │ ├── kinesis_analytics.rb │ ├── kms.rb │ ├── lambda.rb │ ├── lambda_preview.rb │ ├── lex.rb │ ├── lightsail.rb │ ├── machine_learning.rb │ ├── marketplace_commerce_analytics.rb │ ├── marketplace_metering.rb │ ├── ops_works.rb │ ├── ops_works_cm.rb │ ├── pinpoint.rb │ ├── polly.rb │ ├── rds.rb │ ├── redshift.rb │ ├── rekognition.rb │ ├── route53.rb │ ├── route53_domains.rb │ ├── s3.rb │ ├── service_catalog.rb │ ├── ses.rb │ ├── shield.rb │ ├── simple_db.rb │ ├── sms.rb │ ├── snowball.rb │ ├── sns.rb │ ├── sqs.rb │ ├── ssm.rb │ ├── states.rb │ ├── storage_gateway.rb │ ├── sts.rb │ ├── support.rb │ ├── swf.rb │ ├── waf.rb │ ├── waf_regional.rb │ ├── workspaces.rb │ └── x_ray.rb │ ├── banner.rb │ ├── banner │ ├── anon.rb │ ├── bubble.rb │ ├── cheshire.rb │ ├── code_cave.rb │ ├── dont_panic.rb │ ├── f_society.rb │ ├── fork_bomb.rb │ ├── jmp_esp.rb │ ├── matrix.rb │ ├── ninja.rb │ ├── off_the_air.rb │ ├── pirate.rb │ ├── radare2.rb │ ├── radare2_ai.rb │ └── white_rabbit.rb │ ├── blockchain.rb │ ├── blockchain │ ├── btc.rb │ └── eth.rb │ ├── config.rb │ ├── driver.rb │ ├── ffi.rb │ ├── ffi │ └── stdio.rb │ ├── plugins.rb │ ├── plugins │ ├── android.rb │ ├── assembly.rb │ ├── authentication_helper.rb │ ├── baresip.rb │ ├── basic_auth.rb │ ├── beef.rb │ ├── black_duck_binary_analysis.rb │ ├── burp_suite.rb │ ├── bus_pirate.rb │ ├── char.rb │ ├── credit_card.rb │ ├── dao_ldap.rb │ ├── dao_mongo.rb │ ├── dao_postgres.rb │ ├── dao_sqlite3.rb │ ├── defect_dojo.rb │ ├── detect_os.rb │ ├── ein.rb │ ├── file_fu.rb │ ├── fuzz.rb │ ├── git.rb │ ├── github.rb │ ├── hacker_one.rb │ ├── hunter.rb │ ├── ip_info.rb │ ├── irc.rb │ ├── jenkins.rb │ ├── jira_data_center.rb │ ├── json_pathify.rb │ ├── log.rb │ ├── mail_agent.rb │ ├── metasploit.rb │ ├── monkey_patch.rb │ ├── msr206.rb │ ├── nessus_cloud.rb │ ├── nexpose_vuln_scan.rb │ ├── nmap_it.rb │ ├── oauth2.rb │ ├── ocr.rb │ ├── open_api.rb │ ├── openvas.rb │ ├── packet.rb │ ├── pdf_parse.rb │ ├── pony.rb │ ├── ps.rb │ ├── pwn_logger.rb │ ├── rabbit_mq.rb │ ├── repl.rb │ ├── scannable_codes.rb │ ├── serial.rb │ ├── shodan.rb │ ├── slack_client.rb │ ├── sock.rb │ ├── spider.rb │ ├── ssn.rb │ ├── thread_pool.rb │ ├── tor.rb │ ├── transparent_browser.rb │ ├── twitter_api.rb │ ├── uri_scheme.rb │ ├── vault.rb │ ├── vin.rb │ ├── voice.rb │ ├── vsphere.rb │ ├── xxd.rb │ └── zaproxy.rb │ ├── reports.rb │ ├── reports │ ├── fuzz.rb │ ├── html_footer.rb │ ├── html_header.rb │ ├── phone.rb │ ├── sast.rb │ └── uri_buster.rb │ ├── sast.rb │ ├── sast │ ├── amqp_connect_as_guest.rb │ ├── apache_file_system_util_api.rb │ ├── aws.rb │ ├── banned_function_calls_c.rb │ ├── base64.rb │ ├── beef_hook.rb │ ├── cmd_execution_go_lang.rb │ ├── cmd_execution_java.rb │ ├── cmd_execution_python.rb │ ├── cmd_execution_ruby.rb │ ├── cmd_execution_scala.rb │ ├── csrf.rb │ ├── deserial_java.rb │ ├── emoticon.rb │ ├── eval.rb │ ├── factory.rb │ ├── http_authorization_header.rb │ ├── inner_html.rb │ ├── keystore.rb │ ├── local_storage.rb │ ├── location_hash.rb │ ├── log4j.rb │ ├── logger.rb │ ├── md5.rb │ ├── outer_html.rb │ ├── padding_oracle.rb │ ├── password.rb │ ├── php_input_mechanisms.rb │ ├── php_type_juggling.rb │ ├── pom_version.rb │ ├── port.rb │ ├── post_message.rb │ ├── private_key.rb │ ├── redirect.rb │ ├── redos.rb │ ├── shell.rb │ ├── signature.rb │ ├── sql.rb │ ├── ssl.rb │ ├── sudo.rb │ ├── task_tag.rb │ ├── test_case_engine.rb │ ├── throw_errors.rb │ ├── token.rb │ ├── type_script_type_juggling.rb │ ├── use_after_free.rb │ ├── version.rb │ └── window_location_hash.rb │ ├── sdr.rb │ ├── sdr │ ├── decoder.rb │ ├── decoder │ │ └── gsm.rb │ ├── flipper_zero.rb │ ├── frequency_allocation.rb │ ├── gqrx.rb │ ├── rfidler.rb │ └── son_micro_rfid.rb │ ├── version.rb │ ├── www.rb │ └── www │ ├── app_cobalt_io.rb │ ├── bing.rb │ ├── bug_crowd.rb │ ├── checkip.rb │ ├── coinbase_pro.rb │ ├── duckduckgo.rb │ ├── facebook.rb │ ├── google.rb │ ├── hacker_one.rb │ ├── linkedin.rb │ ├── pandora.rb │ ├── pastebin.rb │ ├── paypal.rb │ ├── synack.rb │ ├── torch.rb │ ├── trading_view.rb │ ├── twitter.rb │ ├── uber.rb │ ├── upwork.rb │ ├── wayback_machine.rb │ └── youtube.rb ├── packer ├── daemons │ ├── msfrpcd.rb │ └── openvas.rb ├── deploy_docker_containers.sh ├── deploy_packer_box.sh ├── docker │ ├── kali_rolling_docker_pwn_fuzz_net_app_proto.json │ ├── kali_rolling_docker_pwn_prototyper.json │ ├── kali_rolling_docker_pwn_sast.json │ ├── kali_rolling_docker_pwn_transparent_browser.json │ └── kali_rolling_docker_pwn_www_checkip.json ├── http │ └── kali_rolling_preseed.cfg ├── kali_rolling_aws_ami.json ├── kali_rolling_qemu_kvm.json ├── kali_rolling_virtualbox.json ├── kali_rolling_vmware.json ├── packer_secrets.json.EXAMPLE └── provisioners │ ├── PayloadsAllTheThings.sh │ ├── SecLists.sh │ ├── afl.sh │ ├── aliases.rb │ ├── amass.sh │ ├── android.sh │ ├── ansible.sh │ ├── apache2.sh │ ├── arachni.sh │ ├── awscli.sh │ ├── bashrc.sh │ ├── beef.rb │ ├── burpsuite.sh │ ├── chrome.sh │ ├── coreutils.sh │ ├── curl.sh │ ├── docker.sh │ ├── docker_bashrc.sh │ ├── docker_rvm.sh │ ├── eyewitness.sh │ ├── ffmpeg.sh │ ├── firefox.sh │ ├── fuzzdb.sh │ ├── gdb.sh │ ├── geckodriver.sh │ ├── ghidra.sh │ ├── git.sh │ ├── init_image.sh │ ├── install_vagrant_ssh_key.sh │ ├── irc.sh │ ├── jenkins.sh │ ├── metasploit.rb │ ├── nmap.sh │ ├── openvas.sh │ ├── openvas_wrappers.sh │ ├── openvpn.sh │ ├── peda.sh │ ├── phantomjs.rb │ ├── phantomjs_wrapper.sh │ ├── post_install.sh │ ├── postgresql.sh │ ├── preeny.sh │ ├── pwn.sh │ ├── pwntools.sh │ ├── radamsa.sh │ ├── radare2.sh │ ├── rc.local.sh │ ├── reboot_os.sh │ ├── ruby.sh │ ├── rvm.sh │ ├── scapy.sh │ ├── scout2.sh │ ├── sox.sh │ ├── ssllabs-scan.sh │ ├── strace.sh │ ├── sublist3r.sh │ ├── terminator.sh │ ├── toggle_tor.sh │ ├── tor.sh │ ├── twinkle.sh │ ├── update_os.sh │ ├── upload_globals.sh │ ├── vim.sh │ ├── virtualbox_guest_additions.sh │ ├── vmware_tools.sh │ ├── wpscan.rb │ ├── xrdp.sh │ └── zzuf.sh ├── pwn.gemspec ├── reinstall_pwn_gemset.sh ├── spec ├── lib │ ├── pwn │ │ ├── ai │ │ │ ├── grok_spec.rb │ │ │ ├── introspection_spec.rb │ │ │ ├── ollama_spec.rb │ │ │ └── open_ai_spec.rb │ │ ├── ai_spec.rb │ │ ├── aws │ │ │ ├── acm_spec.rb │ │ │ ├── api_gateway_spec.rb │ │ │ ├── app_stream_spec.rb │ │ │ ├── application_auto_scaling_spec.rb │ │ │ ├── application_discovery_service_spec.rb │ │ │ ├── auto_scaling_spec.rb │ │ │ ├── batch_spec.rb │ │ │ ├── budgets_spec.rb │ │ │ ├── cloud_formation_spec.rb │ │ │ ├── cloud_front_spec.rb │ │ │ ├── cloud_hsm_spec.rb │ │ │ ├── cloud_search_domain_spec.rb │ │ │ ├── cloud_search_spec.rb │ │ │ ├── cloud_trail_spec.rb │ │ │ ├── cloud_watch_events_spec.rb │ │ │ ├── cloud_watch_logs_spec.rb │ │ │ ├── cloud_watch_spec.rb │ │ │ ├── code_build_spec.rb │ │ │ ├── code_commit_spec.rb │ │ │ ├── code_deploy_spec.rb │ │ │ ├── code_pipeline_spec.rb │ │ │ ├── cognito_identity_provider_spec.rb │ │ │ ├── cognito_identity_spec.rb │ │ │ ├── cognito_sync_spec.rb │ │ │ ├── config_service_spec.rb │ │ │ ├── data_pipleline_spec.rb │ │ │ ├── database_migration_service_spec.rb │ │ │ ├── device_farm_spec.rb │ │ │ ├── direct_connect_spec.rb │ │ │ ├── directory_service_spec.rb │ │ │ ├── dynamo_db_spec.rb │ │ │ ├── dynamo_db_streams_spec.rb │ │ │ ├── ec2_spec.rb │ │ │ ├── ecr_spec.rb │ │ │ ├── ecs_spec.rb │ │ │ ├── efs_spec.rb │ │ │ ├── elasti_cache_spec.rb │ │ │ ├── elastic_beanstalk_spec.rb │ │ │ ├── elastic_load_balancing_spec.rb │ │ │ ├── elastic_load_balancing_v2_spec.rb │ │ │ ├── elastic_transcoder_spec.rb │ │ │ ├── elasticsearch_service_spec.rb │ │ │ ├── emr_spec.rb │ │ │ ├── firehose_spec.rb │ │ │ ├── game_lift_spec.rb │ │ │ ├── glacier_spec.rb │ │ │ ├── health_spec.rb │ │ │ ├── iam_spec.rb │ │ │ ├── import_export_spec.rb │ │ │ ├── inspector_spec.rb │ │ │ ├── iot_data_plane_spec.rb │ │ │ ├── iot_spec.rb │ │ │ ├── kinesis_analytics_spec.rb │ │ │ ├── kinesis_spec.rb │ │ │ ├── kms_spec.rb │ │ │ ├── lambda_preview_spec.rb │ │ │ ├── lambda_spec.rb │ │ │ ├── lex_spec.rb │ │ │ ├── lightsail_spec.rb │ │ │ ├── machine_learning_spec.rb │ │ │ ├── marketplace_commerce_analytics_spec.rb │ │ │ ├── marketplace_metering_spec.rb │ │ │ ├── ops_works_cm_spec.rb │ │ │ ├── ops_works_spec.rb │ │ │ ├── pinpoint_spec.rb │ │ │ ├── polly_spec.rb │ │ │ ├── rds_spec.rb │ │ │ ├── redshift_spec.rb │ │ │ ├── rekognition_spec.rb │ │ │ ├── route53_domains_spec.rb │ │ │ ├── route53_spec.rb │ │ │ ├── s3_spec.rb │ │ │ ├── service_catalog_spec.rb │ │ │ ├── ses_spec.rb │ │ │ ├── shield_spec.rb │ │ │ ├── simple_db_spec.rb │ │ │ ├── sms_spec.rb │ │ │ ├── snowball_spec.rb │ │ │ ├── sns_spec.rb │ │ │ ├── sqs_spec.rb │ │ │ ├── ssm_spec.rb │ │ │ ├── states_spec.rb │ │ │ ├── storage_gateway_spec.rb │ │ │ ├── sts_spec.rb │ │ │ ├── support_spec.rb │ │ │ ├── swf_spec.rb │ │ │ ├── waf_regional_spec.rb │ │ │ ├── waf_spec.rb │ │ │ ├── workspaces_spec.rb │ │ │ └── x_ray_spec.rb │ │ ├── aws_spec.rb │ │ ├── banner │ │ │ ├── anon_spec.rb │ │ │ ├── bubble_spec.rb │ │ │ ├── cheshire_spec.rb │ │ │ ├── code_cave_spec.rb │ │ │ ├── dont_panic_spec.rb │ │ │ ├── f_society_spec.rb │ │ │ ├── fork_bomb_spec.rb │ │ │ ├── jmp_esp_spec.rb │ │ │ ├── matrix_spec.rb │ │ │ ├── ninja_spec.rb │ │ │ ├── off_the_air_spec.rb │ │ │ ├── pirate_spec.rb │ │ │ ├── radare2_ai_spec.rb │ │ │ ├── radare2_spec.rb │ │ │ └── white_rabbit_spec.rb │ │ ├── banner_spec.rb │ │ ├── blockchain │ │ │ ├── btc_spec.rb │ │ │ └── eth_spec.rb │ │ ├── blockchain_spec.rb │ │ ├── config_spec.rb │ │ ├── driver_spec.rb │ │ ├── ffi │ │ │ └── stdio_spec.rb │ │ ├── ffi_spec.rb │ │ ├── plugins │ │ │ ├── android_spec.rb │ │ │ ├── assembly_spec.rb │ │ │ ├── authentication_helper_spec.rb │ │ │ ├── baresip_spec.rb │ │ │ ├── basic_auth_spec.rb │ │ │ ├── beef_spec.rb │ │ │ ├── black_duck_binary_analysis_spec.rb │ │ │ ├── burp_suite_spec.rb │ │ │ ├── bus_pirate_spec.rb │ │ │ ├── char_spec.rb │ │ │ ├── credit_card_spec.rb │ │ │ ├── dao_ldap_spec.rb │ │ │ ├── dao_mongo_spec.rb │ │ │ ├── dao_postgres_spec.rb │ │ │ ├── dao_sqlite3_spec.rb │ │ │ ├── defect_dojo_spec.rb │ │ │ ├── detect_os_spec.rb │ │ │ ├── ein_spec.rb │ │ │ ├── file_fu_spec.rb │ │ │ ├── fuzz_spec.rb │ │ │ ├── git_spec.rb │ │ │ ├── github_spec.rb │ │ │ ├── hacker_one_spec.rb │ │ │ ├── hunter_spec.rb │ │ │ ├── ip_info_spec.rb │ │ │ ├── irc_spec.rb │ │ │ ├── jenkins_spec.rb │ │ │ ├── jira_data_center_spec.rb │ │ │ ├── json_pathify_spec.rb │ │ │ ├── log_spec.rb │ │ │ ├── mail_agent_spec.rb │ │ │ ├── metasploit_spec.rb │ │ │ ├── monkey_patch_spec.rb │ │ │ ├── msr206_spec.rb │ │ │ ├── nessus_cloud_spec.rb │ │ │ ├── nexpose_vuln_scan_spec.rb │ │ │ ├── nmap_it_spec.rb │ │ │ ├── oauth2_spec.rb │ │ │ ├── ocr_spec.rb │ │ │ ├── open_api_spec.rb │ │ │ ├── openvas_spec.rb │ │ │ ├── packet_spec.rb │ │ │ ├── pdf_parse_spec.rb │ │ │ ├── pony_spec.rb │ │ │ ├── ps_spec.rb │ │ │ ├── pwn_logger_spec.rb │ │ │ ├── rabbit_mq_spec.rb │ │ │ ├── repl_spec.rb │ │ │ ├── scannable_codes_spec.rb │ │ │ ├── serial_spec.rb │ │ │ ├── shodan_spec.rb │ │ │ ├── slack_client_spec.rb │ │ │ ├── sock_spec.rb │ │ │ ├── spider_spec.rb │ │ │ ├── ssn_spec.rb │ │ │ ├── thread_pool_spec.rb │ │ │ ├── tor_spec.rb │ │ │ ├── transparent_browser_spec.rb │ │ │ ├── twitter_api_spec.rb │ │ │ ├── uri_scheme_spec.rb │ │ │ ├── vault_spec.rb │ │ │ ├── vin_spec.rb │ │ │ ├── voice_spec.rb │ │ │ ├── vsphere_spec.rb │ │ │ ├── xxd_spec.rb │ │ │ └── zaproxy_spec.rb │ │ ├── plugins_spec.rb │ │ ├── reports │ │ │ ├── fuzz_spec.rb │ │ │ ├── html_footer_spec.rb │ │ │ ├── html_header_spec.rb │ │ │ ├── phone_spec.rb │ │ │ ├── sast_spec.rb │ │ │ └── uri_buster_spec.rb │ │ ├── reports_spec.rb │ │ ├── sast │ │ │ ├── amqp_connect_as_guest_spec.rb │ │ │ ├── apache_file_system_util_api_spec.rb │ │ │ ├── aws_spec.rb │ │ │ ├── banned_function_calls_c_spec.rb │ │ │ ├── base64_spec.rb │ │ │ ├── beef_hook_spec.rb │ │ │ ├── cmd_execution_go_lang_spec.rb │ │ │ ├── cmd_execution_java_spec.rb │ │ │ ├── cmd_execution_python_spec.rb │ │ │ ├── cmd_execution_ruby_spec.rb │ │ │ ├── cmd_execution_scala_spec.rb │ │ │ ├── csrf_spec.rb │ │ │ ├── deserial_java_spec.rb │ │ │ ├── emoticon_spec.rb │ │ │ ├── eval_spec.rb │ │ │ ├── factory_spec.rb │ │ │ ├── http_authorization_header_spec.rb │ │ │ ├── inner_html_spec.rb │ │ │ ├── keystore_spec.rb │ │ │ ├── local_storage_spec.rb │ │ │ ├── location_hash_spec.rb │ │ │ ├── log4j_spec.rb │ │ │ ├── logger_spec.rb │ │ │ ├── md5_spec.rb │ │ │ ├── outer_html_spec.rb │ │ │ ├── padding_oracle_spec.rb │ │ │ ├── password_spec.rb │ │ │ ├── php_input_mechanisms_spec.rb │ │ │ ├── php_type_juggling_spec.rb │ │ │ ├── pom_version_spec.rb │ │ │ ├── port_spec.rb │ │ │ ├── post_message_spec.rb │ │ │ ├── private_key_spec.rb │ │ │ ├── redirect_spec.rb │ │ │ ├── redos_spec.rb │ │ │ ├── shell_spec.rb │ │ │ ├── signature_spec.rb │ │ │ ├── sql_spec.rb │ │ │ ├── ssl_spec.rb │ │ │ ├── sudo_spec.rb │ │ │ ├── task_tag_spec.rb │ │ │ ├── test_case_engine_spec.rb │ │ │ ├── throw_errors_spec.rb │ │ │ ├── token_spec.rb │ │ │ ├── type_script_type_juggling_spec.rb │ │ │ ├── use_after_free_spec.rb │ │ │ ├── version_spec.rb │ │ │ └── window_location_hash_spec.rb │ │ ├── sast_spec.rb │ │ ├── sdr │ │ │ ├── decoder │ │ │ │ └── gsm_spec.rb │ │ │ ├── decoder_spec.rb │ │ │ ├── flipper_zero_spec.rb │ │ │ ├── frequency_allocation_spec.rb │ │ │ ├── gqrx_spec.rb │ │ │ ├── rfidler_spec.rb │ │ │ └── son_micro_rfid_spec.rb │ │ ├── sdr_spec.rb │ │ ├── version_spec.rb │ │ ├── www │ │ │ ├── app_cobalt_io_spec.rb │ │ │ ├── bing_spec.rb │ │ │ ├── bug_crowd_spec.rb │ │ │ ├── checkip_spec.rb │ │ │ ├── coinbase_pro_spec.rb │ │ │ ├── duckduckgo_spec.rb │ │ │ ├── facebook_spec.rb │ │ │ ├── google_spec.rb │ │ │ ├── hacker_one_spec.rb │ │ │ ├── linkedin_spec.rb │ │ │ ├── pandora_spec.rb │ │ │ ├── pastebin_spec.rb │ │ │ ├── paypal_spec.rb │ │ │ ├── synack_spec.rb │ │ │ ├── torch_spec.rb │ │ │ ├── trading_view_spec.rb │ │ │ ├── twitter_spec.rb │ │ │ ├── uber_spec.rb │ │ │ ├── upwork_spec.rb │ │ │ ├── wayback_machine_spec.rb │ │ │ └── youtube_spec.rb │ │ └── www_spec.rb │ └── pwn_spec.rb └── spec_helper.rb ├── third_party ├── .gitkeep ├── http-request-headers-fields-large.txt ├── pwn_rdoc.jsonl └── r2-pwn-layout ├── update_pwn.sh ├── upgrade_ruby.sh ├── vagrant └── provisioners │ ├── apache2.sh │ ├── beef.rb │ ├── burpsuite_pro.rb │ ├── exploit-db.sh │ ├── gem.sh │ ├── init_env.sh │ ├── jenkins.sh │ ├── jenkins_ssh-keygen.rb │ ├── kali_customize.rb │ ├── letsencrypt.rb │ ├── metasploit.rb │ ├── nmap_all_live_hosts.sh │ ├── openvas.sh │ ├── openvas_wrappers.sh │ ├── post_install.sh │ ├── postgres.sh │ ├── pwn.sh │ ├── rvm.sh │ ├── ssllabs-scan.sh │ ├── toggle_tor.sh │ ├── update_jenkins_plugins.rb │ ├── update_os.sh │ ├── upload_globals.sh │ ├── userland_fdisk.sh │ ├── userland_lvm.sh │ └── wpscan.rb ├── vagrant_rsync_third_party.lst └── vagrant_rsync_userland_template.lst /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 0dayInc 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | pwn 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.7 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG_BETWEEN_TAGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/CHANGELOG_BETWEEN_TAGS.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn -------------------------------------------------------------------------------- /bin/pwn_android_war_dialer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_android_war_dialer -------------------------------------------------------------------------------- /bin/pwn_autoinc_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_autoinc_version -------------------------------------------------------------------------------- /bin/pwn_aws_describe_resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_aws_describe_resources -------------------------------------------------------------------------------- /bin/pwn_bdba_groups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_bdba_groups -------------------------------------------------------------------------------- /bin/pwn_bdba_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_bdba_scan -------------------------------------------------------------------------------- /bin/pwn_burp_suite_pro_active_rest_api_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_burp_suite_pro_active_rest_api_scan -------------------------------------------------------------------------------- /bin/pwn_burp_suite_pro_active_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_burp_suite_pro_active_scan -------------------------------------------------------------------------------- /bin/pwn_char_base64_encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_char_base64_encoding -------------------------------------------------------------------------------- /bin/pwn_char_dec_encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_char_dec_encoding -------------------------------------------------------------------------------- /bin/pwn_char_hex_escaped_encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_char_hex_escaped_encoding -------------------------------------------------------------------------------- /bin/pwn_char_html_entity_encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_char_html_entity_encoding -------------------------------------------------------------------------------- /bin/pwn_char_unicode_escaped_encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_char_unicode_escaped_encoding -------------------------------------------------------------------------------- /bin/pwn_char_url_encoding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_char_url_encoding -------------------------------------------------------------------------------- /bin/pwn_crt_sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_crt_sh -------------------------------------------------------------------------------- /bin/pwn_defectdojo_engagement_create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_defectdojo_engagement_create -------------------------------------------------------------------------------- /bin/pwn_defectdojo_importscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_defectdojo_importscan -------------------------------------------------------------------------------- /bin/pwn_defectdojo_reimportscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_defectdojo_reimportscan -------------------------------------------------------------------------------- /bin/pwn_diff_csv_files_w_column_exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_diff_csv_files_w_column_exclude -------------------------------------------------------------------------------- /bin/pwn_domain_reversewhois: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_domain_reversewhois -------------------------------------------------------------------------------- /bin/pwn_fuzz_net_app_proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_fuzz_net_app_proto -------------------------------------------------------------------------------- /bin/pwn_gqrx_scanner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_gqrx_scanner -------------------------------------------------------------------------------- /bin/pwn_jenkins_create_job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_jenkins_create_job -------------------------------------------------------------------------------- /bin/pwn_jenkins_create_view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_jenkins_create_view -------------------------------------------------------------------------------- /bin/pwn_jenkins_install_plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_jenkins_install_plugin -------------------------------------------------------------------------------- /bin/pwn_jenkins_thinBackup_aws_s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_jenkins_thinBackup_aws_s3 -------------------------------------------------------------------------------- /bin/pwn_jenkins_update_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_jenkins_update_plugins -------------------------------------------------------------------------------- /bin/pwn_jenkins_useradd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_jenkins_useradd -------------------------------------------------------------------------------- /bin/pwn_mail_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_mail_agent -------------------------------------------------------------------------------- /bin/pwn_msf_postgres_login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_msf_postgres_login -------------------------------------------------------------------------------- /bin/pwn_nessus_cloud_scan_crud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_nessus_cloud_scan_crud -------------------------------------------------------------------------------- /bin/pwn_nessus_cloud_vulnscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_nessus_cloud_vulnscan -------------------------------------------------------------------------------- /bin/pwn_nexpose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_nexpose -------------------------------------------------------------------------------- /bin/pwn_nmap_discover_tcp_udp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_nmap_discover_tcp_udp -------------------------------------------------------------------------------- /bin/pwn_openvas_vulnscan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_openvas_vulnscan -------------------------------------------------------------------------------- /bin/pwn_pastebin_sample_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_pastebin_sample_filter -------------------------------------------------------------------------------- /bin/pwn_phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_phone -------------------------------------------------------------------------------- /bin/pwn_rdoc_to_jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_rdoc_to_jsonl -------------------------------------------------------------------------------- /bin/pwn_sast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_sast -------------------------------------------------------------------------------- /bin/pwn_serial_check_voicemail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_serial_check_voicemail -------------------------------------------------------------------------------- /bin/pwn_serial_msr206: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_serial_msr206 -------------------------------------------------------------------------------- /bin/pwn_serial_qualcomm_commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_serial_qualcomm_commands -------------------------------------------------------------------------------- /bin/pwn_serial_son_micro_sm132_rfid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_serial_son_micro_sm132_rfid -------------------------------------------------------------------------------- /bin/pwn_shodan_graphql_introspection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_shodan_graphql_introspection -------------------------------------------------------------------------------- /bin/pwn_shodan_search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_shodan_search -------------------------------------------------------------------------------- /bin/pwn_simple_http_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_simple_http_server -------------------------------------------------------------------------------- /bin/pwn_web_cache_deception: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_web_cache_deception -------------------------------------------------------------------------------- /bin/pwn_www_checkip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_www_checkip -------------------------------------------------------------------------------- /bin/pwn_www_uri_buster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_www_uri_buster -------------------------------------------------------------------------------- /bin/pwn_xss_dom_vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_xss_dom_vectors -------------------------------------------------------------------------------- /bin/pwn_zaproxy_active_rest_api_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_zaproxy_active_rest_api_scan -------------------------------------------------------------------------------- /bin/pwn_zaproxy_active_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/bin/pwn_zaproxy_active_scan -------------------------------------------------------------------------------- /documentation/PWN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/PWN.png -------------------------------------------------------------------------------- /documentation/PWN_Contributors_and_Users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/PWN_Contributors_and_Users.png -------------------------------------------------------------------------------- /documentation/fax-spectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/fax-spectrogram.png -------------------------------------------------------------------------------- /documentation/fax-waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/fax-waveform.png -------------------------------------------------------------------------------- /documentation/pwn_android_war_dialer_session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/pwn_android_war_dialer_session.png -------------------------------------------------------------------------------- /documentation/pwn_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/pwn_install.png -------------------------------------------------------------------------------- /documentation/pwn_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/pwn_wallpaper.jpg -------------------------------------------------------------------------------- /documentation/ringing-spectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/ringing-spectrogram.png -------------------------------------------------------------------------------- /documentation/ringing-waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/documentation/ringing-waveform.png -------------------------------------------------------------------------------- /etc/systemd/msfrpcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/systemd/msfrpcd.service -------------------------------------------------------------------------------- /etc/systemd/openvas.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/systemd/openvas.service -------------------------------------------------------------------------------- /etc/userland/aws/apache2/jenkins_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/jenkins_443.conf -------------------------------------------------------------------------------- /etc/userland/aws/apache2/jenkins_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/jenkins_80.conf -------------------------------------------------------------------------------- /etc/userland/aws/apache2/openvas_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/openvas_443.conf -------------------------------------------------------------------------------- /etc/userland/aws/apache2/openvas_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/openvas_80.conf -------------------------------------------------------------------------------- /etc/userland/aws/apache2/sast_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/sast_443.conf -------------------------------------------------------------------------------- /etc/userland/aws/apache2/sast_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/sast_80.conf -------------------------------------------------------------------------------- /etc/userland/aws/apache2/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/apache2/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/arachni/navigation.instruct.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/arachni/navigation.instruct.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/burpsuite/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/burpsuite/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/defectdojo/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/defectdojo/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/inject_build_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/inject_build_envs.sh -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jenkins -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs/pipeline-selfupdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jobs/pipeline-selfupdate.xml -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs/selfupdate-gem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jobs/selfupdate-gem.xml -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs/selfupdate-os.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jobs/selfupdate-os.xml -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs/selfupdate-pwn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jobs/selfupdate-pwn.xml -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs/selfupdate-rvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jobs/selfupdate-rvm.xml -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs/selfupdate-wpscan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/jobs/selfupdate-wpscan.xml -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/jobs_userland/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/log_parser_rules/sast.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/log_parser_rules/sast.rules -------------------------------------------------------------------------------- /etc/userland/aws/jenkins/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/jenkins/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/letsencrypt/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/letsencrypt/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/metasploit/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/metasploit/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/nessus/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/nessus/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/openvas/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/aws/postgres/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/aws/recon-ng/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/recon-ng/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/aws/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/aws/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/apache2/jenkins_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/jenkins_443.conf -------------------------------------------------------------------------------- /etc/userland/docker/apache2/jenkins_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/jenkins_80.conf -------------------------------------------------------------------------------- /etc/userland/docker/apache2/openvas_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/openvas_443.conf -------------------------------------------------------------------------------- /etc/userland/docker/apache2/openvas_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/openvas_80.conf -------------------------------------------------------------------------------- /etc/userland/docker/apache2/sast_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/sast_443.conf -------------------------------------------------------------------------------- /etc/userland/docker/apache2/sast_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/sast_80.conf -------------------------------------------------------------------------------- /etc/userland/docker/apache2/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/apache2/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/burpsuite/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/burpsuite/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/defectdojo/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/defectdojo/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/inject_build_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/inject_build_envs.sh -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/jenkins -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/jobs/selfupdate-gem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/jobs/selfupdate-gem.xml -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/jobs/selfupdate-os.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/jobs/selfupdate-os.xml -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/jobs/selfupdate-pwn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/jobs/selfupdate-pwn.xml -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/jobs/selfupdate-rvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/jobs/selfupdate-rvm.xml -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/jobs_userland/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/userland/docker/jenkins/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/jenkins/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/letsencrypt/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/letsencrypt/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/metasploit/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/metasploit/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/nessus/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/nessus/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/docker/openvas/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/docker/postgres/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/docker/recon-ng/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/docker/recon-ng/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/jenkins_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/jenkins_443.conf -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/jenkins_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/jenkins_80.conf -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/openvas_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/openvas_443.conf -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/openvas_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/openvas_80.conf -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/sast_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/sast_443.conf -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/sast_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/sast_80.conf -------------------------------------------------------------------------------- /etc/userland/qemu/apache2/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/apache2/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/arachni/navigation.instruct.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/arachni/navigation.instruct.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/burpsuite/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/burpsuite/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/defectdojo/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/defectdojo/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/inject_build_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/inject_build_envs.sh -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/jenkins -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jobs/selfupdate-gem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/jobs/selfupdate-gem.xml -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jobs/selfupdate-os.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/jobs/selfupdate-os.xml -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jobs/selfupdate-pwn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/jobs/selfupdate-pwn.xml -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jobs/selfupdate-rvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/jobs/selfupdate-rvm.xml -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jobs/selfupdate-wpscan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/jobs/selfupdate-wpscan.xml -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/jobs_userland/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/log_parser_rules/sast.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/log_parser_rules/sast.rules -------------------------------------------------------------------------------- /etc/userland/qemu/jenkins/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/jenkins/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/letsencrypt/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/letsencrypt/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/metasploit/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/metasploit/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/nessus/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/nessus/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/qemu/openvas/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/qemu/postgres/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/qemu/recon-ng/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/qemu/recon-ng/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/jenkins_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/jenkins_443.conf -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/jenkins_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/jenkins_80.conf -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/openvas_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/openvas_443.conf -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/openvas_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/openvas_80.conf -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/sast_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/sast_443.conf -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/sast_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/sast_80.conf -------------------------------------------------------------------------------- /etc/userland/ruby-gem/apache2/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/apache2/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/burpsuite/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/burpsuite/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/defectdojo/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/defectdojo/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/inject_build_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/inject_build_envs.sh -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/jenkins -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/jobs/selfupdate-gem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/jobs/selfupdate-gem.xml -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/jobs/selfupdate-os.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/jobs/selfupdate-os.xml -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/jobs/selfupdate-pwn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/jobs/selfupdate-pwn.xml -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/jobs/selfupdate-rvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/jobs/selfupdate-rvm.xml -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/jobs_userland/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/userland/ruby-gem/jenkins/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/jenkins/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/metasploit/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/metasploit/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/nessus/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/nessus/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/ruby-gem/openvas/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/ruby-gem/postgres/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/ruby-gem/recon-ng/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/ruby-gem/recon-ng/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/jenkins_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/jenkins_443.conf -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/jenkins_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/jenkins_80.conf -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/openvas_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/openvas_443.conf -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/openvas_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/openvas_80.conf -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/sast_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/sast_443.conf -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/sast_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/sast_80.conf -------------------------------------------------------------------------------- /etc/userland/virtualbox/apache2/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/apache2/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/virtualbox/jenkins/inject_build_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/jenkins/inject_build_envs.sh -------------------------------------------------------------------------------- /etc/userland/virtualbox/jenkins/jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/jenkins/jenkins -------------------------------------------------------------------------------- /etc/userland/virtualbox/jenkins/jobs_userland/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/userland/virtualbox/jenkins/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/jenkins/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/virtualbox/nessus/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/nessus/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/virtualbox/openvas/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/virtualbox/postgres/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/virtualbox/recon-ng/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/virtualbox/recon-ng/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/virtualbox/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | cpus: 1 2 | memory: 4096 3 | hostname: pwndeployed.pwn.local 4 | diskMB: 36864 5 | -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/jenkins_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/jenkins_443.conf -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/jenkins_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/jenkins_80.conf -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/openvas_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/openvas_443.conf -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/openvas_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/openvas_80.conf -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/sast_443.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/sast_443.conf -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/sast_80.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/sast_80.conf -------------------------------------------------------------------------------- /etc/userland/vmware/apache2/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/apache2/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/burpsuite/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/burpsuite/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/defectdojo/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/defectdojo/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/inject_build_envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/inject_build_envs.sh -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/jenkins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/jenkins -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/jobs/selfupdate-gem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/jobs/selfupdate-gem.xml -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/jobs/selfupdate-os.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/jobs/selfupdate-os.xml -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/jobs/selfupdate-pwn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/jobs/selfupdate-pwn.xml -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/jobs/selfupdate-rvm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/jobs/selfupdate-rvm.xml -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/jobs_userland/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /etc/userland/vmware/jenkins/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/jenkins/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/letsencrypt/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/letsencrypt/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/metasploit/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/metasploit/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/nessus/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/nessus/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/openvas/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/vmware/postgres/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- 1 | user: 'pwnadmin' 2 | pass: 'changeme' 3 | -------------------------------------------------------------------------------- /etc/userland/vmware/recon-ng/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/recon-ng/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /etc/userland/vmware/vagrant.yaml.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/etc/userland/vmware/vagrant.yaml.EXAMPLE -------------------------------------------------------------------------------- /find_latest_gem_versions_per_Gemfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/find_latest_gem_versions_per_Gemfile.sh -------------------------------------------------------------------------------- /git_commit_test_reinit_gem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/git_commit_test_reinit_gem.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/install.sh -------------------------------------------------------------------------------- /lib/pwn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn.rb -------------------------------------------------------------------------------- /lib/pwn/ai.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ai.rb -------------------------------------------------------------------------------- /lib/pwn/ai/grok.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ai/grok.rb -------------------------------------------------------------------------------- /lib/pwn/ai/introspection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ai/introspection.rb -------------------------------------------------------------------------------- /lib/pwn/ai/ollama.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ai/ollama.rb -------------------------------------------------------------------------------- /lib/pwn/ai/open_ai.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ai/open_ai.rb -------------------------------------------------------------------------------- /lib/pwn/aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws.rb -------------------------------------------------------------------------------- /lib/pwn/aws/acm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/acm.rb -------------------------------------------------------------------------------- /lib/pwn/aws/api_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/api_gateway.rb -------------------------------------------------------------------------------- /lib/pwn/aws/app_stream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/app_stream.rb -------------------------------------------------------------------------------- /lib/pwn/aws/application_auto_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/application_auto_scaling.rb -------------------------------------------------------------------------------- /lib/pwn/aws/application_discovery_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/application_discovery_service.rb -------------------------------------------------------------------------------- /lib/pwn/aws/auto_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/auto_scaling.rb -------------------------------------------------------------------------------- /lib/pwn/aws/batch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/batch.rb -------------------------------------------------------------------------------- /lib/pwn/aws/budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/budgets.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_formation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_formation.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_front.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_front.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_hsm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_hsm.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_search.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_search_domain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_search_domain.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_trail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_trail.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_watch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_watch.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_watch_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_watch_events.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cloud_watch_logs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cloud_watch_logs.rb -------------------------------------------------------------------------------- /lib/pwn/aws/code_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/code_build.rb -------------------------------------------------------------------------------- /lib/pwn/aws/code_commit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/code_commit.rb -------------------------------------------------------------------------------- /lib/pwn/aws/code_deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/code_deploy.rb -------------------------------------------------------------------------------- /lib/pwn/aws/code_pipeline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/code_pipeline.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cognito_identity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cognito_identity.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cognito_identity_provider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cognito_identity_provider.rb -------------------------------------------------------------------------------- /lib/pwn/aws/cognito_sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/cognito_sync.rb -------------------------------------------------------------------------------- /lib/pwn/aws/config_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/config_service.rb -------------------------------------------------------------------------------- /lib/pwn/aws/data_pipleline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/data_pipleline.rb -------------------------------------------------------------------------------- /lib/pwn/aws/database_migration_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/database_migration_service.rb -------------------------------------------------------------------------------- /lib/pwn/aws/device_farm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/device_farm.rb -------------------------------------------------------------------------------- /lib/pwn/aws/direct_connect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/direct_connect.rb -------------------------------------------------------------------------------- /lib/pwn/aws/directory_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/directory_service.rb -------------------------------------------------------------------------------- /lib/pwn/aws/dynamo_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/dynamo_db.rb -------------------------------------------------------------------------------- /lib/pwn/aws/dynamo_db_streams.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/dynamo_db_streams.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ec2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ec2.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ecr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ecr.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ecs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ecs.rb -------------------------------------------------------------------------------- /lib/pwn/aws/efs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/efs.rb -------------------------------------------------------------------------------- /lib/pwn/aws/elasti_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/elasti_cache.rb -------------------------------------------------------------------------------- /lib/pwn/aws/elastic_beanstalk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/elastic_beanstalk.rb -------------------------------------------------------------------------------- /lib/pwn/aws/elastic_load_balancing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/elastic_load_balancing.rb -------------------------------------------------------------------------------- /lib/pwn/aws/elastic_load_balancing_v2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/elastic_load_balancing_v2.rb -------------------------------------------------------------------------------- /lib/pwn/aws/elastic_transcoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/elastic_transcoder.rb -------------------------------------------------------------------------------- /lib/pwn/aws/elasticsearch_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/elasticsearch_service.rb -------------------------------------------------------------------------------- /lib/pwn/aws/emr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/emr.rb -------------------------------------------------------------------------------- /lib/pwn/aws/firehose.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/firehose.rb -------------------------------------------------------------------------------- /lib/pwn/aws/game_lift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/game_lift.rb -------------------------------------------------------------------------------- /lib/pwn/aws/glacier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/glacier.rb -------------------------------------------------------------------------------- /lib/pwn/aws/health.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/health.rb -------------------------------------------------------------------------------- /lib/pwn/aws/iam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/iam.rb -------------------------------------------------------------------------------- /lib/pwn/aws/import_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/import_export.rb -------------------------------------------------------------------------------- /lib/pwn/aws/inspector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/inspector.rb -------------------------------------------------------------------------------- /lib/pwn/aws/iot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/iot.rb -------------------------------------------------------------------------------- /lib/pwn/aws/iot_data_plane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/iot_data_plane.rb -------------------------------------------------------------------------------- /lib/pwn/aws/kinesis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/kinesis.rb -------------------------------------------------------------------------------- /lib/pwn/aws/kinesis_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/kinesis_analytics.rb -------------------------------------------------------------------------------- /lib/pwn/aws/kms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/kms.rb -------------------------------------------------------------------------------- /lib/pwn/aws/lambda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/lambda.rb -------------------------------------------------------------------------------- /lib/pwn/aws/lambda_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/lambda_preview.rb -------------------------------------------------------------------------------- /lib/pwn/aws/lex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/lex.rb -------------------------------------------------------------------------------- /lib/pwn/aws/lightsail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/lightsail.rb -------------------------------------------------------------------------------- /lib/pwn/aws/machine_learning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/machine_learning.rb -------------------------------------------------------------------------------- /lib/pwn/aws/marketplace_commerce_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/marketplace_commerce_analytics.rb -------------------------------------------------------------------------------- /lib/pwn/aws/marketplace_metering.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/marketplace_metering.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ops_works.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ops_works.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ops_works_cm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ops_works_cm.rb -------------------------------------------------------------------------------- /lib/pwn/aws/pinpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/pinpoint.rb -------------------------------------------------------------------------------- /lib/pwn/aws/polly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/polly.rb -------------------------------------------------------------------------------- /lib/pwn/aws/rds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/rds.rb -------------------------------------------------------------------------------- /lib/pwn/aws/redshift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/redshift.rb -------------------------------------------------------------------------------- /lib/pwn/aws/rekognition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/rekognition.rb -------------------------------------------------------------------------------- /lib/pwn/aws/route53.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/route53.rb -------------------------------------------------------------------------------- /lib/pwn/aws/route53_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/route53_domains.rb -------------------------------------------------------------------------------- /lib/pwn/aws/s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/s3.rb -------------------------------------------------------------------------------- /lib/pwn/aws/service_catalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/service_catalog.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ses.rb -------------------------------------------------------------------------------- /lib/pwn/aws/shield.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/shield.rb -------------------------------------------------------------------------------- /lib/pwn/aws/simple_db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/simple_db.rb -------------------------------------------------------------------------------- /lib/pwn/aws/sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/sms.rb -------------------------------------------------------------------------------- /lib/pwn/aws/snowball.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/snowball.rb -------------------------------------------------------------------------------- /lib/pwn/aws/sns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/sns.rb -------------------------------------------------------------------------------- /lib/pwn/aws/sqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/sqs.rb -------------------------------------------------------------------------------- /lib/pwn/aws/ssm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/ssm.rb -------------------------------------------------------------------------------- /lib/pwn/aws/states.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/states.rb -------------------------------------------------------------------------------- /lib/pwn/aws/storage_gateway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/storage_gateway.rb -------------------------------------------------------------------------------- /lib/pwn/aws/sts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/sts.rb -------------------------------------------------------------------------------- /lib/pwn/aws/support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/support.rb -------------------------------------------------------------------------------- /lib/pwn/aws/swf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/swf.rb -------------------------------------------------------------------------------- /lib/pwn/aws/waf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/waf.rb -------------------------------------------------------------------------------- /lib/pwn/aws/waf_regional.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/waf_regional.rb -------------------------------------------------------------------------------- /lib/pwn/aws/workspaces.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/workspaces.rb -------------------------------------------------------------------------------- /lib/pwn/aws/x_ray.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/aws/x_ray.rb -------------------------------------------------------------------------------- /lib/pwn/banner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner.rb -------------------------------------------------------------------------------- /lib/pwn/banner/anon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/anon.rb -------------------------------------------------------------------------------- /lib/pwn/banner/bubble.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/bubble.rb -------------------------------------------------------------------------------- /lib/pwn/banner/cheshire.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/cheshire.rb -------------------------------------------------------------------------------- /lib/pwn/banner/code_cave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/code_cave.rb -------------------------------------------------------------------------------- /lib/pwn/banner/dont_panic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/dont_panic.rb -------------------------------------------------------------------------------- /lib/pwn/banner/f_society.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/f_society.rb -------------------------------------------------------------------------------- /lib/pwn/banner/fork_bomb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/fork_bomb.rb -------------------------------------------------------------------------------- /lib/pwn/banner/jmp_esp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/jmp_esp.rb -------------------------------------------------------------------------------- /lib/pwn/banner/matrix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/matrix.rb -------------------------------------------------------------------------------- /lib/pwn/banner/ninja.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/ninja.rb -------------------------------------------------------------------------------- /lib/pwn/banner/off_the_air.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/off_the_air.rb -------------------------------------------------------------------------------- /lib/pwn/banner/pirate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/pirate.rb -------------------------------------------------------------------------------- /lib/pwn/banner/radare2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/radare2.rb -------------------------------------------------------------------------------- /lib/pwn/banner/radare2_ai.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/radare2_ai.rb -------------------------------------------------------------------------------- /lib/pwn/banner/white_rabbit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/banner/white_rabbit.rb -------------------------------------------------------------------------------- /lib/pwn/blockchain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/blockchain.rb -------------------------------------------------------------------------------- /lib/pwn/blockchain/btc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/blockchain/btc.rb -------------------------------------------------------------------------------- /lib/pwn/blockchain/eth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/blockchain/eth.rb -------------------------------------------------------------------------------- /lib/pwn/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/config.rb -------------------------------------------------------------------------------- /lib/pwn/driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/driver.rb -------------------------------------------------------------------------------- /lib/pwn/ffi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ffi.rb -------------------------------------------------------------------------------- /lib/pwn/ffi/stdio.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/ffi/stdio.rb -------------------------------------------------------------------------------- /lib/pwn/plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/android.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/android.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/assembly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/assembly.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/authentication_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/authentication_helper.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/baresip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/baresip.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/basic_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/basic_auth.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/beef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/beef.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/black_duck_binary_analysis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/black_duck_binary_analysis.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/burp_suite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/burp_suite.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/bus_pirate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/bus_pirate.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/char.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/char.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/credit_card.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/credit_card.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/dao_ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/dao_ldap.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/dao_mongo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/dao_mongo.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/dao_postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/dao_postgres.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/dao_sqlite3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/dao_sqlite3.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/defect_dojo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/defect_dojo.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/detect_os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/detect_os.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/ein.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/ein.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/file_fu.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/file_fu.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/fuzz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/fuzz.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/git.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/git.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/github.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/github.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/hacker_one.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/hacker_one.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/hunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/hunter.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/ip_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/ip_info.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/irc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/irc.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/jenkins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/jenkins.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/jira_data_center.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/jira_data_center.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/json_pathify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/json_pathify.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/log.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/mail_agent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/mail_agent.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/metasploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/metasploit.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/monkey_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/monkey_patch.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/msr206.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/msr206.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/nessus_cloud.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/nessus_cloud.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/nexpose_vuln_scan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/nexpose_vuln_scan.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/nmap_it.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/nmap_it.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/oauth2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/oauth2.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/ocr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/ocr.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/open_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/open_api.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/openvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/openvas.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/packet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/packet.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/pdf_parse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/pdf_parse.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/pony.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/pony.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/ps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/ps.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/pwn_logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/pwn_logger.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/rabbit_mq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/rabbit_mq.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/repl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/repl.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/scannable_codes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/scannable_codes.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/serial.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/serial.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/shodan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/shodan.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/slack_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/slack_client.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/sock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/sock.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/spider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/spider.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/ssn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/ssn.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/thread_pool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/thread_pool.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/tor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/tor.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/transparent_browser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/transparent_browser.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/twitter_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/twitter_api.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/uri_scheme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/uri_scheme.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/vault.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/vault.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/vin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/vin.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/voice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/voice.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/vsphere.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/vsphere.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/xxd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/xxd.rb -------------------------------------------------------------------------------- /lib/pwn/plugins/zaproxy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/plugins/zaproxy.rb -------------------------------------------------------------------------------- /lib/pwn/reports.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports.rb -------------------------------------------------------------------------------- /lib/pwn/reports/fuzz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports/fuzz.rb -------------------------------------------------------------------------------- /lib/pwn/reports/html_footer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports/html_footer.rb -------------------------------------------------------------------------------- /lib/pwn/reports/html_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports/html_header.rb -------------------------------------------------------------------------------- /lib/pwn/reports/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports/phone.rb -------------------------------------------------------------------------------- /lib/pwn/reports/sast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports/sast.rb -------------------------------------------------------------------------------- /lib/pwn/reports/uri_buster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/reports/uri_buster.rb -------------------------------------------------------------------------------- /lib/pwn/sast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast.rb -------------------------------------------------------------------------------- /lib/pwn/sast/amqp_connect_as_guest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/amqp_connect_as_guest.rb -------------------------------------------------------------------------------- /lib/pwn/sast/apache_file_system_util_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/apache_file_system_util_api.rb -------------------------------------------------------------------------------- /lib/pwn/sast/aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/aws.rb -------------------------------------------------------------------------------- /lib/pwn/sast/banned_function_calls_c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/banned_function_calls_c.rb -------------------------------------------------------------------------------- /lib/pwn/sast/base64.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/base64.rb -------------------------------------------------------------------------------- /lib/pwn/sast/beef_hook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/beef_hook.rb -------------------------------------------------------------------------------- /lib/pwn/sast/cmd_execution_go_lang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/cmd_execution_go_lang.rb -------------------------------------------------------------------------------- /lib/pwn/sast/cmd_execution_java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/cmd_execution_java.rb -------------------------------------------------------------------------------- /lib/pwn/sast/cmd_execution_python.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/cmd_execution_python.rb -------------------------------------------------------------------------------- /lib/pwn/sast/cmd_execution_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/cmd_execution_ruby.rb -------------------------------------------------------------------------------- /lib/pwn/sast/cmd_execution_scala.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/cmd_execution_scala.rb -------------------------------------------------------------------------------- /lib/pwn/sast/csrf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/csrf.rb -------------------------------------------------------------------------------- /lib/pwn/sast/deserial_java.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/deserial_java.rb -------------------------------------------------------------------------------- /lib/pwn/sast/emoticon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/emoticon.rb -------------------------------------------------------------------------------- /lib/pwn/sast/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/eval.rb -------------------------------------------------------------------------------- /lib/pwn/sast/factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/factory.rb -------------------------------------------------------------------------------- /lib/pwn/sast/http_authorization_header.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/http_authorization_header.rb -------------------------------------------------------------------------------- /lib/pwn/sast/inner_html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/inner_html.rb -------------------------------------------------------------------------------- /lib/pwn/sast/keystore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/keystore.rb -------------------------------------------------------------------------------- /lib/pwn/sast/local_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/local_storage.rb -------------------------------------------------------------------------------- /lib/pwn/sast/location_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/location_hash.rb -------------------------------------------------------------------------------- /lib/pwn/sast/log4j.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/log4j.rb -------------------------------------------------------------------------------- /lib/pwn/sast/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/logger.rb -------------------------------------------------------------------------------- /lib/pwn/sast/md5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/md5.rb -------------------------------------------------------------------------------- /lib/pwn/sast/outer_html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/outer_html.rb -------------------------------------------------------------------------------- /lib/pwn/sast/padding_oracle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/padding_oracle.rb -------------------------------------------------------------------------------- /lib/pwn/sast/password.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/password.rb -------------------------------------------------------------------------------- /lib/pwn/sast/php_input_mechanisms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/php_input_mechanisms.rb -------------------------------------------------------------------------------- /lib/pwn/sast/php_type_juggling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/php_type_juggling.rb -------------------------------------------------------------------------------- /lib/pwn/sast/pom_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/pom_version.rb -------------------------------------------------------------------------------- /lib/pwn/sast/port.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/port.rb -------------------------------------------------------------------------------- /lib/pwn/sast/post_message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/post_message.rb -------------------------------------------------------------------------------- /lib/pwn/sast/private_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/private_key.rb -------------------------------------------------------------------------------- /lib/pwn/sast/redirect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/redirect.rb -------------------------------------------------------------------------------- /lib/pwn/sast/redos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/redos.rb -------------------------------------------------------------------------------- /lib/pwn/sast/shell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/shell.rb -------------------------------------------------------------------------------- /lib/pwn/sast/signature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/signature.rb -------------------------------------------------------------------------------- /lib/pwn/sast/sql.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/sql.rb -------------------------------------------------------------------------------- /lib/pwn/sast/ssl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/ssl.rb -------------------------------------------------------------------------------- /lib/pwn/sast/sudo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/sudo.rb -------------------------------------------------------------------------------- /lib/pwn/sast/task_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/task_tag.rb -------------------------------------------------------------------------------- /lib/pwn/sast/test_case_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/test_case_engine.rb -------------------------------------------------------------------------------- /lib/pwn/sast/throw_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/throw_errors.rb -------------------------------------------------------------------------------- /lib/pwn/sast/token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/token.rb -------------------------------------------------------------------------------- /lib/pwn/sast/type_script_type_juggling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/type_script_type_juggling.rb -------------------------------------------------------------------------------- /lib/pwn/sast/use_after_free.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/use_after_free.rb -------------------------------------------------------------------------------- /lib/pwn/sast/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/version.rb -------------------------------------------------------------------------------- /lib/pwn/sast/window_location_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sast/window_location_hash.rb -------------------------------------------------------------------------------- /lib/pwn/sdr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/decoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/decoder.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/decoder/gsm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/decoder/gsm.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/flipper_zero.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/flipper_zero.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/frequency_allocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/frequency_allocation.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/gqrx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/gqrx.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/rfidler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/rfidler.rb -------------------------------------------------------------------------------- /lib/pwn/sdr/son_micro_rfid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/sdr/son_micro_rfid.rb -------------------------------------------------------------------------------- /lib/pwn/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module PWN 4 | VERSION = '0.5.510' 5 | end 6 | -------------------------------------------------------------------------------- /lib/pwn/www.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www.rb -------------------------------------------------------------------------------- /lib/pwn/www/app_cobalt_io.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/app_cobalt_io.rb -------------------------------------------------------------------------------- /lib/pwn/www/bing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/bing.rb -------------------------------------------------------------------------------- /lib/pwn/www/bug_crowd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/bug_crowd.rb -------------------------------------------------------------------------------- /lib/pwn/www/checkip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/checkip.rb -------------------------------------------------------------------------------- /lib/pwn/www/coinbase_pro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/coinbase_pro.rb -------------------------------------------------------------------------------- /lib/pwn/www/duckduckgo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/duckduckgo.rb -------------------------------------------------------------------------------- /lib/pwn/www/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/facebook.rb -------------------------------------------------------------------------------- /lib/pwn/www/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/google.rb -------------------------------------------------------------------------------- /lib/pwn/www/hacker_one.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/hacker_one.rb -------------------------------------------------------------------------------- /lib/pwn/www/linkedin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/linkedin.rb -------------------------------------------------------------------------------- /lib/pwn/www/pandora.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/pandora.rb -------------------------------------------------------------------------------- /lib/pwn/www/pastebin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/pastebin.rb -------------------------------------------------------------------------------- /lib/pwn/www/paypal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/paypal.rb -------------------------------------------------------------------------------- /lib/pwn/www/synack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/synack.rb -------------------------------------------------------------------------------- /lib/pwn/www/torch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/torch.rb -------------------------------------------------------------------------------- /lib/pwn/www/trading_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/trading_view.rb -------------------------------------------------------------------------------- /lib/pwn/www/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/twitter.rb -------------------------------------------------------------------------------- /lib/pwn/www/uber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/uber.rb -------------------------------------------------------------------------------- /lib/pwn/www/upwork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/upwork.rb -------------------------------------------------------------------------------- /lib/pwn/www/wayback_machine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/wayback_machine.rb -------------------------------------------------------------------------------- /lib/pwn/www/youtube.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/lib/pwn/www/youtube.rb -------------------------------------------------------------------------------- /packer/daemons/msfrpcd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/daemons/msfrpcd.rb -------------------------------------------------------------------------------- /packer/daemons/openvas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/daemons/openvas.rb -------------------------------------------------------------------------------- /packer/deploy_docker_containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/deploy_docker_containers.sh -------------------------------------------------------------------------------- /packer/deploy_packer_box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/deploy_packer_box.sh -------------------------------------------------------------------------------- /packer/docker/kali_rolling_docker_pwn_sast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/docker/kali_rolling_docker_pwn_sast.json -------------------------------------------------------------------------------- /packer/http/kali_rolling_preseed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/http/kali_rolling_preseed.cfg -------------------------------------------------------------------------------- /packer/kali_rolling_aws_ami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/kali_rolling_aws_ami.json -------------------------------------------------------------------------------- /packer/kali_rolling_qemu_kvm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/kali_rolling_qemu_kvm.json -------------------------------------------------------------------------------- /packer/kali_rolling_virtualbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/kali_rolling_virtualbox.json -------------------------------------------------------------------------------- /packer/kali_rolling_vmware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/kali_rolling_vmware.json -------------------------------------------------------------------------------- /packer/packer_secrets.json.EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/packer_secrets.json.EXAMPLE -------------------------------------------------------------------------------- /packer/provisioners/PayloadsAllTheThings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/PayloadsAllTheThings.sh -------------------------------------------------------------------------------- /packer/provisioners/SecLists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/SecLists.sh -------------------------------------------------------------------------------- /packer/provisioners/afl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/afl.sh -------------------------------------------------------------------------------- /packer/provisioners/aliases.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/aliases.rb -------------------------------------------------------------------------------- /packer/provisioners/amass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/amass.sh -------------------------------------------------------------------------------- /packer/provisioners/android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/android.sh -------------------------------------------------------------------------------- /packer/provisioners/ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/ansible.sh -------------------------------------------------------------------------------- /packer/provisioners/apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/apache2.sh -------------------------------------------------------------------------------- /packer/provisioners/arachni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/arachni.sh -------------------------------------------------------------------------------- /packer/provisioners/awscli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/awscli.sh -------------------------------------------------------------------------------- /packer/provisioners/bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/bashrc.sh -------------------------------------------------------------------------------- /packer/provisioners/beef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/beef.rb -------------------------------------------------------------------------------- /packer/provisioners/burpsuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/burpsuite.sh -------------------------------------------------------------------------------- /packer/provisioners/chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/chrome.sh -------------------------------------------------------------------------------- /packer/provisioners/coreutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/coreutils.sh -------------------------------------------------------------------------------- /packer/provisioners/curl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/curl.sh -------------------------------------------------------------------------------- /packer/provisioners/docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/docker.sh -------------------------------------------------------------------------------- /packer/provisioners/docker_bashrc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo 'source /etc/profile.d/rvm.sh' >> ~/.bashrc 3 | -------------------------------------------------------------------------------- /packer/provisioners/docker_rvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/docker_rvm.sh -------------------------------------------------------------------------------- /packer/provisioners/eyewitness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/eyewitness.sh -------------------------------------------------------------------------------- /packer/provisioners/ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/ffmpeg.sh -------------------------------------------------------------------------------- /packer/provisioners/firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/firefox.sh -------------------------------------------------------------------------------- /packer/provisioners/fuzzdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/fuzzdb.sh -------------------------------------------------------------------------------- /packer/provisioners/gdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/gdb.sh -------------------------------------------------------------------------------- /packer/provisioners/geckodriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/geckodriver.sh -------------------------------------------------------------------------------- /packer/provisioners/ghidra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/ghidra.sh -------------------------------------------------------------------------------- /packer/provisioners/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/git.sh -------------------------------------------------------------------------------- /packer/provisioners/init_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/init_image.sh -------------------------------------------------------------------------------- /packer/provisioners/install_vagrant_ssh_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/install_vagrant_ssh_key.sh -------------------------------------------------------------------------------- /packer/provisioners/irc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/irc.sh -------------------------------------------------------------------------------- /packer/provisioners/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/jenkins.sh -------------------------------------------------------------------------------- /packer/provisioners/metasploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/metasploit.rb -------------------------------------------------------------------------------- /packer/provisioners/nmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/nmap.sh -------------------------------------------------------------------------------- /packer/provisioners/openvas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/openvas.sh -------------------------------------------------------------------------------- /packer/provisioners/openvas_wrappers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/openvas_wrappers.sh -------------------------------------------------------------------------------- /packer/provisioners/openvpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/openvpn.sh -------------------------------------------------------------------------------- /packer/provisioners/peda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/peda.sh -------------------------------------------------------------------------------- /packer/provisioners/phantomjs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/phantomjs.rb -------------------------------------------------------------------------------- /packer/provisioners/phantomjs_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/phantomjs_wrapper.sh -------------------------------------------------------------------------------- /packer/provisioners/post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/post_install.sh -------------------------------------------------------------------------------- /packer/provisioners/postgresql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/postgresql.sh -------------------------------------------------------------------------------- /packer/provisioners/preeny.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/preeny.sh -------------------------------------------------------------------------------- /packer/provisioners/pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/pwn.sh -------------------------------------------------------------------------------- /packer/provisioners/pwntools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/pwntools.sh -------------------------------------------------------------------------------- /packer/provisioners/radamsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/radamsa.sh -------------------------------------------------------------------------------- /packer/provisioners/radare2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/radare2.sh -------------------------------------------------------------------------------- /packer/provisioners/rc.local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/rc.local.sh -------------------------------------------------------------------------------- /packer/provisioners/reboot_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/reboot_os.sh -------------------------------------------------------------------------------- /packer/provisioners/ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/ruby.sh -------------------------------------------------------------------------------- /packer/provisioners/rvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/rvm.sh -------------------------------------------------------------------------------- /packer/provisioners/scapy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/scapy.sh -------------------------------------------------------------------------------- /packer/provisioners/scout2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/scout2.sh -------------------------------------------------------------------------------- /packer/provisioners/sox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/sox.sh -------------------------------------------------------------------------------- /packer/provisioners/ssllabs-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/ssllabs-scan.sh -------------------------------------------------------------------------------- /packer/provisioners/strace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/strace.sh -------------------------------------------------------------------------------- /packer/provisioners/sublist3r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/sublist3r.sh -------------------------------------------------------------------------------- /packer/provisioners/terminator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/terminator.sh -------------------------------------------------------------------------------- /packer/provisioners/toggle_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/toggle_tor.sh -------------------------------------------------------------------------------- /packer/provisioners/tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/tor.sh -------------------------------------------------------------------------------- /packer/provisioners/twinkle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/twinkle.sh -------------------------------------------------------------------------------- /packer/provisioners/update_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/update_os.sh -------------------------------------------------------------------------------- /packer/provisioners/upload_globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/upload_globals.sh -------------------------------------------------------------------------------- /packer/provisioners/vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/vim.sh -------------------------------------------------------------------------------- /packer/provisioners/virtualbox_guest_additions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/virtualbox_guest_additions.sh -------------------------------------------------------------------------------- /packer/provisioners/vmware_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/vmware_tools.sh -------------------------------------------------------------------------------- /packer/provisioners/wpscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/wpscan.rb -------------------------------------------------------------------------------- /packer/provisioners/xrdp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/xrdp.sh -------------------------------------------------------------------------------- /packer/provisioners/zzuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/packer/provisioners/zzuf.sh -------------------------------------------------------------------------------- /pwn.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/pwn.gemspec -------------------------------------------------------------------------------- /reinstall_pwn_gemset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/reinstall_pwn_gemset.sh -------------------------------------------------------------------------------- /spec/lib/pwn/ai/grok_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ai/grok_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/ai/introspection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ai/introspection_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/ai/ollama_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ai/ollama_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/ai/open_ai_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ai/open_ai_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/ai_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ai_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/acm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/acm_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/api_gateway_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/api_gateway_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/app_stream_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/app_stream_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/application_auto_scaling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/application_auto_scaling_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/auto_scaling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/auto_scaling_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/batch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/batch_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/budgets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/budgets_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_formation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_formation_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_front_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_front_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_hsm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_hsm_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_search_domain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_search_domain_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_search_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_search_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_trail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_trail_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_watch_events_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_watch_events_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_watch_logs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_watch_logs_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cloud_watch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cloud_watch_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/code_build_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/code_build_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/code_commit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/code_commit_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/code_deploy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/code_deploy_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/code_pipeline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/code_pipeline_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cognito_identity_provider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cognito_identity_provider_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cognito_identity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cognito_identity_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/cognito_sync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/cognito_sync_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/config_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/config_service_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/data_pipleline_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/data_pipleline_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/device_farm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/device_farm_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/direct_connect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/direct_connect_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/directory_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/directory_service_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/dynamo_db_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/dynamo_db_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/dynamo_db_streams_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/dynamo_db_streams_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ec2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ec2_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ecr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ecr_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ecs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ecs_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/efs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/efs_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/elasti_cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/elasti_cache_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/elastic_beanstalk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/elastic_beanstalk_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/elastic_load_balancing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/elastic_load_balancing_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/elastic_load_balancing_v2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/elastic_load_balancing_v2_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/elastic_transcoder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/elastic_transcoder_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/elasticsearch_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/elasticsearch_service_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/emr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/emr_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/firehose_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/firehose_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/game_lift_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/game_lift_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/glacier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/glacier_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/health_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/health_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/iam_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/iam_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/import_export_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/import_export_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/inspector_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/inspector_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/iot_data_plane_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/iot_data_plane_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/iot_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/iot_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/kinesis_analytics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/kinesis_analytics_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/kinesis_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/kinesis_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/kms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/kms_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/lambda_preview_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/lambda_preview_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/lambda_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/lambda_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/lex_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/lex_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/lightsail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/lightsail_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/machine_learning_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/machine_learning_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/marketplace_metering_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/marketplace_metering_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ops_works_cm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ops_works_cm_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ops_works_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ops_works_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/pinpoint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/pinpoint_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/polly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/polly_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/rds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/rds_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/redshift_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/redshift_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/rekognition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/rekognition_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/route53_domains_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/route53_domains_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/route53_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/route53_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/s3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/s3_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/service_catalog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/service_catalog_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ses_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ses_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/shield_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/shield_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/simple_db_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/simple_db_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/sms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/sms_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/snowball_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/snowball_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/sns_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/sns_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/sqs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/sqs_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/ssm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/ssm_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/states_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/states_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/storage_gateway_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/storage_gateway_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/sts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/sts_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/support_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/support_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/swf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/swf_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/waf_regional_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/waf_regional_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/waf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/waf_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/workspaces_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/workspaces_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws/x_ray_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws/x_ray_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/aws_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/aws_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/anon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/anon_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/bubble_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/bubble_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/cheshire_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/cheshire_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/code_cave_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/code_cave_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/dont_panic_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/dont_panic_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/f_society_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/f_society_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/fork_bomb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/fork_bomb_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/jmp_esp_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/jmp_esp_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/matrix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/matrix_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/ninja_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/ninja_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/off_the_air_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/off_the_air_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/pirate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/pirate_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/radare2_ai_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/radare2_ai_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/radare2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/radare2_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner/white_rabbit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner/white_rabbit_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/banner_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/banner_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/blockchain/btc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/blockchain/btc_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/blockchain/eth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/blockchain/eth_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/blockchain_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/blockchain_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/config_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/driver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/driver_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/ffi/stdio_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ffi/stdio_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/ffi_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/ffi_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/android_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/android_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/assembly_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/assembly_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/authentication_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/authentication_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/baresip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/baresip_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/basic_auth_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/basic_auth_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/beef_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/beef_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/burp_suite_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/burp_suite_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/bus_pirate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/bus_pirate_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/char_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/char_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/credit_card_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/credit_card_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/dao_ldap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/dao_ldap_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/dao_mongo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/dao_mongo_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/dao_postgres_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/dao_postgres_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/dao_sqlite3_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/dao_sqlite3_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/defect_dojo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/defect_dojo_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/detect_os_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/detect_os_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/ein_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/ein_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/file_fu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/file_fu_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/fuzz_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/fuzz_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/git_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/git_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/github_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/github_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/hacker_one_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/hacker_one_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/hunter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/hunter_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/ip_info_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/ip_info_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/irc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/irc_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/jenkins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/jenkins_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/jira_data_center_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/jira_data_center_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/json_pathify_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/json_pathify_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/log_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/mail_agent_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/mail_agent_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/metasploit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/metasploit_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/monkey_patch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/monkey_patch_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/msr206_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/msr206_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/nessus_cloud_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/nessus_cloud_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/nexpose_vuln_scan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/nexpose_vuln_scan_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/nmap_it_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/nmap_it_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/oauth2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/oauth2_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/ocr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/ocr_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/open_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/open_api_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/openvas_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/openvas_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/packet_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/packet_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/pdf_parse_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/pdf_parse_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/pony_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/pony_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/ps_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/ps_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/pwn_logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/pwn_logger_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/rabbit_mq_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/rabbit_mq_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/repl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/repl_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/scannable_codes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/scannable_codes_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/serial_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/serial_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/shodan_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/shodan_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/slack_client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/slack_client_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/sock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/sock_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/spider_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/spider_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/ssn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/ssn_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/thread_pool_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/thread_pool_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/tor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/tor_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/transparent_browser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/transparent_browser_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/twitter_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/twitter_api_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/uri_scheme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/uri_scheme_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/vault_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/vault_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/vin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/vin_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/voice_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/voice_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/vsphere_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/vsphere_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/xxd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/xxd_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins/zaproxy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins/zaproxy_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/plugins_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/plugins_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports/fuzz_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports/fuzz_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports/html_footer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports/html_footer_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports/html_header_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports/html_header_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports/phone_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports/phone_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports/sast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports/sast_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports/uri_buster_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports/uri_buster_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/reports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/reports_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/amqp_connect_as_guest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/amqp_connect_as_guest_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/aws_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/aws_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/banned_function_calls_c_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/banned_function_calls_c_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/base64_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/base64_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/beef_hook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/beef_hook_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/cmd_execution_go_lang_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/cmd_execution_go_lang_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/cmd_execution_java_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/cmd_execution_java_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/cmd_execution_python_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/cmd_execution_python_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/cmd_execution_ruby_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/cmd_execution_ruby_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/cmd_execution_scala_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/cmd_execution_scala_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/csrf_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/csrf_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/deserial_java_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/deserial_java_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/emoticon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/emoticon_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/eval_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/eval_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/factory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/factory_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/inner_html_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/inner_html_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/keystore_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/keystore_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/local_storage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/local_storage_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/location_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/location_hash_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/log4j_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/log4j_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/logger_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/logger_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/md5_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/md5_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/outer_html_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/outer_html_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/padding_oracle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/padding_oracle_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/password_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/password_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/php_input_mechanisms_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/php_input_mechanisms_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/php_type_juggling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/php_type_juggling_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/pom_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/pom_version_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/port_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/port_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/post_message_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/post_message_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/private_key_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/private_key_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/redirect_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/redirect_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/redos_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/redos_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/shell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/shell_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/signature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/signature_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/sql_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/sql_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/ssl_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/ssl_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/sudo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/sudo_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/task_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/task_tag_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/test_case_engine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/test_case_engine_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/throw_errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/throw_errors_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/token_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/token_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/use_after_free_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/use_after_free_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/version_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast/window_location_hash_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast/window_location_hash_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sast_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/decoder/gsm_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/decoder/gsm_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/decoder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/decoder_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/flipper_zero_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/flipper_zero_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/frequency_allocation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/frequency_allocation_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/gqrx_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/gqrx_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/rfidler_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/rfidler_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr/son_micro_rfid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr/son_micro_rfid_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/sdr_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/sdr_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/version_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/app_cobalt_io_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/app_cobalt_io_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/bing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/bing_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/bug_crowd_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/bug_crowd_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/checkip_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/checkip_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/coinbase_pro_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/coinbase_pro_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/duckduckgo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/duckduckgo_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/facebook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/facebook_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/google_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/google_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/hacker_one_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/hacker_one_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/linkedin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/linkedin_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/pandora_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/pandora_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/pastebin_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/pastebin_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/paypal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/paypal_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/synack_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/synack_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/torch_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/torch_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/trading_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/trading_view_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/twitter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/twitter_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/uber_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/uber_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/upwork_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/upwork_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/wayback_machine_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/wayback_machine_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www/youtube_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www/youtube_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn/www_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn/www_spec.rb -------------------------------------------------------------------------------- /spec/lib/pwn_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/spec/lib/pwn_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | require 'pwn' 4 | -------------------------------------------------------------------------------- /third_party/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/http-request-headers-fields-large.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/third_party/http-request-headers-fields-large.txt -------------------------------------------------------------------------------- /third_party/pwn_rdoc.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/third_party/pwn_rdoc.jsonl -------------------------------------------------------------------------------- /third_party/r2-pwn-layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/third_party/r2-pwn-layout -------------------------------------------------------------------------------- /update_pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/update_pwn.sh -------------------------------------------------------------------------------- /upgrade_ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/upgrade_ruby.sh -------------------------------------------------------------------------------- /vagrant/provisioners/apache2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/apache2.sh -------------------------------------------------------------------------------- /vagrant/provisioners/beef.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/beef.rb -------------------------------------------------------------------------------- /vagrant/provisioners/burpsuite_pro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/burpsuite_pro.rb -------------------------------------------------------------------------------- /vagrant/provisioners/exploit-db.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash --login 2 | sudo searchsploit -u 3 | -------------------------------------------------------------------------------- /vagrant/provisioners/gem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/gem.sh -------------------------------------------------------------------------------- /vagrant/provisioners/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/init_env.sh -------------------------------------------------------------------------------- /vagrant/provisioners/jenkins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/jenkins.sh -------------------------------------------------------------------------------- /vagrant/provisioners/jenkins_ssh-keygen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/jenkins_ssh-keygen.rb -------------------------------------------------------------------------------- /vagrant/provisioners/kali_customize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/kali_customize.rb -------------------------------------------------------------------------------- /vagrant/provisioners/letsencrypt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/letsencrypt.rb -------------------------------------------------------------------------------- /vagrant/provisioners/metasploit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/metasploit.rb -------------------------------------------------------------------------------- /vagrant/provisioners/nmap_all_live_hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/nmap_all_live_hosts.sh -------------------------------------------------------------------------------- /vagrant/provisioners/openvas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/openvas.sh -------------------------------------------------------------------------------- /vagrant/provisioners/openvas_wrappers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/openvas_wrappers.sh -------------------------------------------------------------------------------- /vagrant/provisioners/post_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/post_install.sh -------------------------------------------------------------------------------- /vagrant/provisioners/postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/postgres.sh -------------------------------------------------------------------------------- /vagrant/provisioners/pwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/pwn.sh -------------------------------------------------------------------------------- /vagrant/provisioners/rvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/rvm.sh -------------------------------------------------------------------------------- /vagrant/provisioners/ssllabs-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/ssllabs-scan.sh -------------------------------------------------------------------------------- /vagrant/provisioners/toggle_tor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/toggle_tor.sh -------------------------------------------------------------------------------- /vagrant/provisioners/update_jenkins_plugins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/update_jenkins_plugins.rb -------------------------------------------------------------------------------- /vagrant/provisioners/update_os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/update_os.sh -------------------------------------------------------------------------------- /vagrant/provisioners/upload_globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/upload_globals.sh -------------------------------------------------------------------------------- /vagrant/provisioners/userland_fdisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/userland_fdisk.sh -------------------------------------------------------------------------------- /vagrant/provisioners/userland_lvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/userland_lvm.sh -------------------------------------------------------------------------------- /vagrant/provisioners/wpscan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant/provisioners/wpscan.rb -------------------------------------------------------------------------------- /vagrant_rsync_third_party.lst: -------------------------------------------------------------------------------- 1 | third_party/burpsuite-pro.jar 2 | -------------------------------------------------------------------------------- /vagrant_rsync_userland_template.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0dayInc/pwn/HEAD/vagrant_rsync_userland_template.lst --------------------------------------------------------------------------------