├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── contributors.json ├── mapping.json ├── oswar ├── collection │ ├── off-chain_osint.md │ └── on-chain_osint.md ├── command_and_control │ ├── botnets.md │ └── fake_or_compromised_validator_nodes.md ├── credential_access │ ├── exchange_account_theft.md │ ├── identity_spoofing.md │ ├── private_key_theft.md │ └── social_media_credential_theft.md ├── defense_evasion │ ├── chain_hopping.md │ ├── coinjoin_transaction.md │ ├── encryption.md │ ├── mixing_services.md │ └── obfuscation.md ├── discovery │ ├── api_discovery.md │ └── dumpster_diving.md ├── execution │ ├── 51_attack.md │ ├── access_control_issues.md │ ├── bad_randomness.md │ ├── block_timestamp_manipulation.md │ ├── check-effect_interaction.md │ ├── constructors_with_care.md │ ├── cross-chain_bridge_attacks.md │ ├── crypto-jacking.md │ ├── default_visibility.md │ ├── delegate_call.md │ ├── denial_of_service_(dos).md │ ├── dependency_risks.md │ ├── entropy_illusion_predictability.md │ ├── external_contract_referencing.md │ ├── flash_loan_(amm exploitation).md │ ├── floating_pragma.md │ ├── force_feeding.md │ ├── integer_overflow_underflow.md │ ├── logic_bombs.md │ ├── mev.md │ ├── mirroring_attack.md │ ├── oracle_attack.md │ ├── outdated_compiler.md │ ├── reentrancy.md │ ├── self-destruct.md │ ├── semantic_errors.md │ ├── short_address_parameter_attack.md │ ├── smart_contract_vulnerabilities.md │ ├── state_variable_default_visibility_vulnerability.md │ ├── time_manipulation.md │ ├── token_supply_manipulation.md │ ├── tx_origin_authentication.md │ ├── unchecked_return_values.md │ ├── unexpected_ether.md │ └── uninitialized_storage_pointers.md ├── exfiltration │ ├── atomic_swaps.md │ └── privacy_solutions_like_monero.md ├── gas_vulnerabilities │ ├── DoS-gas-limit.md │ ├── gas_griefing.md │ └── test.md ├── impact │ ├── data_destruction.md │ ├── disrupt_system_operation.md │ ├── eclipse_attack.md │ ├── front-running.md │ ├── network_shutdown.md │ ├── spartacus_attack.md │ └── sybil_attack.md ├── initial_access │ ├── Proxy_Phishing_NFTs │ ├── Proxy_Phishing_NFTs.md │ ├── dns_hijacking.md │ ├── forged_address_phishing.md │ ├── malicious_code_injection.md │ ├── malware.md │ ├── on-chain_scams.md │ ├── phishing.md │ ├── server_access.md │ ├── validator_priviliges.md │ └── zero_transfer_phishing.md ├── lateral_movement │ ├── bridge_exploits.md │ ├── compromised_nodes.md │ └── multi-chain_attacks.md ├── persistence │ ├── backdoor.md │ ├── contract_ownership_changes.md │ ├── malicious_smart_contracts.md │ └── rugpull.md ├── privilege_escalation │ ├── blockchain_node_hijacking.md │ ├── governance_exploit_(dao_takeover).md │ ├── guardian_takeover.md │ └── smart_contract_ownership_override.md ├── reconnaissance │ ├── api_endpoints.md │ ├── malware.md │ ├── smart_contract_scanning.md │ └── social_engineering_one.md └── resource_development │ ├── brute_force_attack.md │ ├── credential_stuffing.md │ ├── keylogger.md │ ├── malware.md │ ├── network_profiling.md │ ├── phishing_for_information.md │ ├── resources_for_network-based_attacks.md │ ├── social_engineering.md │ └── spear_phishing.md └── oswar_og.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/README.md -------------------------------------------------------------------------------- /contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/contributors.json -------------------------------------------------------------------------------- /mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/mapping.json -------------------------------------------------------------------------------- /oswar/collection/off-chain_osint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/collection/off-chain_osint.md -------------------------------------------------------------------------------- /oswar/collection/on-chain_osint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/collection/on-chain_osint.md -------------------------------------------------------------------------------- /oswar/command_and_control/botnets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/command_and_control/botnets.md -------------------------------------------------------------------------------- /oswar/command_and_control/fake_or_compromised_validator_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/command_and_control/fake_or_compromised_validator_nodes.md -------------------------------------------------------------------------------- /oswar/credential_access/exchange_account_theft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/credential_access/exchange_account_theft.md -------------------------------------------------------------------------------- /oswar/credential_access/identity_spoofing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/credential_access/identity_spoofing.md -------------------------------------------------------------------------------- /oswar/credential_access/private_key_theft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/credential_access/private_key_theft.md -------------------------------------------------------------------------------- /oswar/credential_access/social_media_credential_theft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/credential_access/social_media_credential_theft.md -------------------------------------------------------------------------------- /oswar/defense_evasion/chain_hopping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/defense_evasion/chain_hopping.md -------------------------------------------------------------------------------- /oswar/defense_evasion/coinjoin_transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/defense_evasion/coinjoin_transaction.md -------------------------------------------------------------------------------- /oswar/defense_evasion/encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/defense_evasion/encryption.md -------------------------------------------------------------------------------- /oswar/defense_evasion/mixing_services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/defense_evasion/mixing_services.md -------------------------------------------------------------------------------- /oswar/defense_evasion/obfuscation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/defense_evasion/obfuscation.md -------------------------------------------------------------------------------- /oswar/discovery/api_discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/discovery/api_discovery.md -------------------------------------------------------------------------------- /oswar/discovery/dumpster_diving.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/discovery/dumpster_diving.md -------------------------------------------------------------------------------- /oswar/execution/51_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/51_attack.md -------------------------------------------------------------------------------- /oswar/execution/access_control_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/access_control_issues.md -------------------------------------------------------------------------------- /oswar/execution/bad_randomness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/bad_randomness.md -------------------------------------------------------------------------------- /oswar/execution/block_timestamp_manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/block_timestamp_manipulation.md -------------------------------------------------------------------------------- /oswar/execution/check-effect_interaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/check-effect_interaction.md -------------------------------------------------------------------------------- /oswar/execution/constructors_with_care.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/constructors_with_care.md -------------------------------------------------------------------------------- /oswar/execution/cross-chain_bridge_attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/cross-chain_bridge_attacks.md -------------------------------------------------------------------------------- /oswar/execution/crypto-jacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/crypto-jacking.md -------------------------------------------------------------------------------- /oswar/execution/default_visibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/default_visibility.md -------------------------------------------------------------------------------- /oswar/execution/delegate_call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/delegate_call.md -------------------------------------------------------------------------------- /oswar/execution/denial_of_service_(dos).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/denial_of_service_(dos).md -------------------------------------------------------------------------------- /oswar/execution/dependency_risks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/dependency_risks.md -------------------------------------------------------------------------------- /oswar/execution/entropy_illusion_predictability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/entropy_illusion_predictability.md -------------------------------------------------------------------------------- /oswar/execution/external_contract_referencing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/external_contract_referencing.md -------------------------------------------------------------------------------- /oswar/execution/flash_loan_(amm exploitation).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/flash_loan_(amm exploitation).md -------------------------------------------------------------------------------- /oswar/execution/floating_pragma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/floating_pragma.md -------------------------------------------------------------------------------- /oswar/execution/force_feeding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/force_feeding.md -------------------------------------------------------------------------------- /oswar/execution/integer_overflow_underflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/integer_overflow_underflow.md -------------------------------------------------------------------------------- /oswar/execution/logic_bombs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/logic_bombs.md -------------------------------------------------------------------------------- /oswar/execution/mev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/mev.md -------------------------------------------------------------------------------- /oswar/execution/mirroring_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/mirroring_attack.md -------------------------------------------------------------------------------- /oswar/execution/oracle_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/oracle_attack.md -------------------------------------------------------------------------------- /oswar/execution/outdated_compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/outdated_compiler.md -------------------------------------------------------------------------------- /oswar/execution/reentrancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/reentrancy.md -------------------------------------------------------------------------------- /oswar/execution/self-destruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/self-destruct.md -------------------------------------------------------------------------------- /oswar/execution/semantic_errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/semantic_errors.md -------------------------------------------------------------------------------- /oswar/execution/short_address_parameter_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/short_address_parameter_attack.md -------------------------------------------------------------------------------- /oswar/execution/smart_contract_vulnerabilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/smart_contract_vulnerabilities.md -------------------------------------------------------------------------------- /oswar/execution/state_variable_default_visibility_vulnerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/state_variable_default_visibility_vulnerability.md -------------------------------------------------------------------------------- /oswar/execution/time_manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/time_manipulation.md -------------------------------------------------------------------------------- /oswar/execution/token_supply_manipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/token_supply_manipulation.md -------------------------------------------------------------------------------- /oswar/execution/tx_origin_authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/tx_origin_authentication.md -------------------------------------------------------------------------------- /oswar/execution/unchecked_return_values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/unchecked_return_values.md -------------------------------------------------------------------------------- /oswar/execution/unexpected_ether.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/unexpected_ether.md -------------------------------------------------------------------------------- /oswar/execution/uninitialized_storage_pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/execution/uninitialized_storage_pointers.md -------------------------------------------------------------------------------- /oswar/exfiltration/atomic_swaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/exfiltration/atomic_swaps.md -------------------------------------------------------------------------------- /oswar/exfiltration/privacy_solutions_like_monero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/exfiltration/privacy_solutions_like_monero.md -------------------------------------------------------------------------------- /oswar/gas_vulnerabilities/DoS-gas-limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/gas_vulnerabilities/DoS-gas-limit.md -------------------------------------------------------------------------------- /oswar/gas_vulnerabilities/gas_griefing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/gas_vulnerabilities/gas_griefing.md -------------------------------------------------------------------------------- /oswar/gas_vulnerabilities/test.md: -------------------------------------------------------------------------------- 1 | Testing files -------------------------------------------------------------------------------- /oswar/impact/data_destruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/data_destruction.md -------------------------------------------------------------------------------- /oswar/impact/disrupt_system_operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/disrupt_system_operation.md -------------------------------------------------------------------------------- /oswar/impact/eclipse_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/eclipse_attack.md -------------------------------------------------------------------------------- /oswar/impact/front-running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/front-running.md -------------------------------------------------------------------------------- /oswar/impact/network_shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/network_shutdown.md -------------------------------------------------------------------------------- /oswar/impact/spartacus_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/spartacus_attack.md -------------------------------------------------------------------------------- /oswar/impact/sybil_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/impact/sybil_attack.md -------------------------------------------------------------------------------- /oswar/initial_access/Proxy_Phishing_NFTs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/Proxy_Phishing_NFTs -------------------------------------------------------------------------------- /oswar/initial_access/Proxy_Phishing_NFTs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/Proxy_Phishing_NFTs.md -------------------------------------------------------------------------------- /oswar/initial_access/dns_hijacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/dns_hijacking.md -------------------------------------------------------------------------------- /oswar/initial_access/forged_address_phishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/forged_address_phishing.md -------------------------------------------------------------------------------- /oswar/initial_access/malicious_code_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/malicious_code_injection.md -------------------------------------------------------------------------------- /oswar/initial_access/malware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/malware.md -------------------------------------------------------------------------------- /oswar/initial_access/on-chain_scams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/on-chain_scams.md -------------------------------------------------------------------------------- /oswar/initial_access/phishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/phishing.md -------------------------------------------------------------------------------- /oswar/initial_access/server_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/server_access.md -------------------------------------------------------------------------------- /oswar/initial_access/validator_priviliges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/validator_priviliges.md -------------------------------------------------------------------------------- /oswar/initial_access/zero_transfer_phishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/initial_access/zero_transfer_phishing.md -------------------------------------------------------------------------------- /oswar/lateral_movement/bridge_exploits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/lateral_movement/bridge_exploits.md -------------------------------------------------------------------------------- /oswar/lateral_movement/compromised_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/lateral_movement/compromised_nodes.md -------------------------------------------------------------------------------- /oswar/lateral_movement/multi-chain_attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/lateral_movement/multi-chain_attacks.md -------------------------------------------------------------------------------- /oswar/persistence/backdoor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/persistence/backdoor.md -------------------------------------------------------------------------------- /oswar/persistence/contract_ownership_changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/persistence/contract_ownership_changes.md -------------------------------------------------------------------------------- /oswar/persistence/malicious_smart_contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/persistence/malicious_smart_contracts.md -------------------------------------------------------------------------------- /oswar/persistence/rugpull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/persistence/rugpull.md -------------------------------------------------------------------------------- /oswar/privilege_escalation/blockchain_node_hijacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/privilege_escalation/blockchain_node_hijacking.md -------------------------------------------------------------------------------- /oswar/privilege_escalation/governance_exploit_(dao_takeover).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/privilege_escalation/governance_exploit_(dao_takeover).md -------------------------------------------------------------------------------- /oswar/privilege_escalation/guardian_takeover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/privilege_escalation/guardian_takeover.md -------------------------------------------------------------------------------- /oswar/privilege_escalation/smart_contract_ownership_override.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/privilege_escalation/smart_contract_ownership_override.md -------------------------------------------------------------------------------- /oswar/reconnaissance/api_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/reconnaissance/api_endpoints.md -------------------------------------------------------------------------------- /oswar/reconnaissance/malware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/reconnaissance/malware.md -------------------------------------------------------------------------------- /oswar/reconnaissance/smart_contract_scanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/reconnaissance/smart_contract_scanning.md -------------------------------------------------------------------------------- /oswar/reconnaissance/social_engineering_one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/reconnaissance/social_engineering_one.md -------------------------------------------------------------------------------- /oswar/resource_development/brute_force_attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/brute_force_attack.md -------------------------------------------------------------------------------- /oswar/resource_development/credential_stuffing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/credential_stuffing.md -------------------------------------------------------------------------------- /oswar/resource_development/keylogger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/keylogger.md -------------------------------------------------------------------------------- /oswar/resource_development/malware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/malware.md -------------------------------------------------------------------------------- /oswar/resource_development/network_profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/network_profiling.md -------------------------------------------------------------------------------- /oswar/resource_development/phishing_for_information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/phishing_for_information.md -------------------------------------------------------------------------------- /oswar/resource_development/resources_for_network-based_attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/resources_for_network-based_attacks.md -------------------------------------------------------------------------------- /oswar/resource_development/social_engineering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/social_engineering.md -------------------------------------------------------------------------------- /oswar/resource_development/spear_phishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar/resource_development/spear_phishing.md -------------------------------------------------------------------------------- /oswar_og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyVers-AI/oswar/HEAD/oswar_og.png --------------------------------------------------------------------------------