├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── poc-request.md └── workflows │ └── PRAutoTest.yml ├── .gitignore ├── .gitmodules ├── .prettierrc ├── AudiusPocGasReport.gif ├── CONTRIBUTING.md ├── README.md ├── academy ├── move │ ├── 01_move_sec_intro │ │ ├── en │ │ │ └── readme.md │ │ └── readme.md │ └── 02_move_power │ │ ├── en │ │ └── readme.md │ │ └── readme.md ├── onchain_debug │ ├── 01_tools │ │ ├── en │ │ │ └── readme.md │ │ ├── es │ │ │ └── readme.md │ │ ├── ja │ │ │ └── readme.md │ │ ├── ko │ │ │ └── readme.md │ │ ├── readme.md │ │ └── vi │ │ │ └── readme.md │ ├── 02_warmup │ │ ├── en │ │ │ └── readme.md │ │ ├── es │ │ │ └── readme.md │ │ ├── ja │ │ │ └── readme.md │ │ ├── ko │ │ │ └── readme.md │ │ └── readme.md │ ├── 03_write_your_own_poc │ │ ├── en │ │ │ └── readme.md │ │ ├── es │ │ │ └── readme.md │ │ ├── ja │ │ │ └── readme.md │ │ ├── ko │ │ │ └── readme.md │ │ └── readme.md │ ├── 04_write_your_own_poc │ │ ├── en │ │ │ └── readme.md │ │ ├── es │ │ │ └── readme.md │ │ ├── ja │ │ │ └── readme.md │ │ ├── kr │ │ │ └── readme.md │ │ └── readme.md │ ├── 05_Rugpull │ │ ├── en │ │ │ └── readme.md │ │ ├── es │ │ │ └── readme.md │ │ ├── ja │ │ │ └── readme.md │ │ └── readme.md │ ├── 06_write_your_own_poc │ │ ├── en │ │ │ └── readme.md │ │ ├── es │ │ │ └── readme.md │ │ ├── ja │ │ │ └── readme.md │ │ └── readme.md │ └── 07_Analysis_nomad_bridge │ │ ├── en │ │ └── readme.md │ │ ├── es │ │ └── readme.md │ │ ├── ja │ │ └── readme.md │ │ └── readme.md ├── readme.md ├── solidity │ ├── 01_audit │ │ ├── en │ │ │ └── readme.md │ │ └── readme.md │ ├── 02_first_deposit │ │ ├── en │ │ │ └── readme.md │ │ └── readme.md │ └── 03_lsd_audit │ │ ├── en │ │ └── readme.md │ │ └── readme.md └── user_awareness │ ├── 01_handbook │ ├── en │ │ └── readme.md │ └── readme.md │ ├── 02_CommonScam │ ├── en │ │ └── readme.md │ └── readme.md │ ├── 03_HoneyPot │ ├── en │ │ └── readme.md │ └── readme.md │ ├── 04_NFTScam │ ├── en │ │ └── readme.md │ └── readme.md │ ├── 05_Address_poisoning │ ├── en │ │ └── readme.md │ └── readme.md │ ├── 06_Report_stolen │ ├── en │ │ └── readme.md │ └── readme.md │ ├── 07_offline_sign │ ├── 7-1 │ │ ├── en │ │ │ └── readme.md │ │ └── readme.md │ └── 7-2 │ │ ├── en │ │ └── readme.md │ │ └── readme.md │ └── 08_Anti_phishing_plugin │ ├── en │ └── readme.md │ └── readme.md ├── add_new_entry.py ├── foundry.lock ├── foundry.toml ├── past ├── 2021 │ └── README.md ├── 2022 │ └── README.md ├── 2023 │ └── README.md └── 2024 │ └── README.md ├── remappings.txt ├── requirements.txt ├── script ├── Exploit-template.sol └── Exploit-template_new.sol ├── src ├── Poc-template.sol ├── RPCS_alive_test.sol └── test │ ├── 2017-11 │ └── Parity_kill_exp.sol │ ├── 2018-04 │ ├── BEC_exp.sol │ └── SmartMesh_exp.sol │ ├── 2018-10 │ └── SpankChain_exp.sol │ ├── 2020-04 │ ├── LendfMe_exp.sol │ └── uniswap-erc777.sol │ ├── 2020-06 │ ├── Balancer_20200628_exp.sol │ └── Bancor_exp.sol │ ├── 2020-08 │ └── Opyn_exp.sol │ ├── 2020-09 │ └── bzx_exp.sol │ ├── 2020-10 │ └── HarvestFinance_exp.sol │ ├── 2020-11 │ └── Pickle_exp.sol │ ├── 2020-12 │ └── Cover_exp.sol │ ├── 2021-01 │ └── Sushi_Badger_Digg_exp.sol │ ├── 2021-02 │ └── Yearn_ydai_exp.sol │ ├── 2021-03 │ ├── PAID_exp.sol │ └── dodo_flashloan_exp.sol │ ├── 2021-04 │ └── Uranium_exp.sol │ ├── 2021-05 │ ├── BurgerSwap_exp.sol │ ├── JulSwap_exp.sol │ ├── PancakeBunny_exp.sol │ ├── RariCapital_exp.sol │ ├── Spartan_exp.sol │ ├── ValueDefi_exp.sol │ └── bEarn_exp.sol │ ├── 2021-06 │ ├── 88mph_exp.sol │ ├── Eleven_exp.sol │ ├── PancakeHunny_exp.sol │ ├── SafeDollar_exp.sol │ └── xWin_exp.sol │ ├── 2021-07 │ ├── Chainswap_exp1.sol │ ├── Chainswap_exp2.sol │ └── Levyathan_exp.sol │ ├── 2021-08 │ ├── Cream_exp.sol │ ├── PolyNetwork_exp.sol │ ├── Popsicle_exp.sol │ ├── WaultFinance_exp.sol │ └── XSURGE_exp.sol │ ├── 2021-09 │ ├── DaoMaker_exp.sol │ ├── Nimbus_exp.sol │ ├── NowSwap_exp.sol │ ├── Sushimiso_exp.sol │ └── ZABU_exp.sol │ ├── 2021-10 │ ├── Cream_2_exp.sol │ └── IndexedFinance_exp.sol │ ├── 2021-11 │ ├── Mono_exp.sol │ └── Ploutoz_exp.sol │ ├── 2021-12 │ ├── Grim_exp.sol │ ├── NerveBridge_exp.sol │ └── Visor_exp.sol │ ├── 2022-01 │ ├── Anyswap_exp.sol │ └── Qubit_exp.sol │ ├── 2022-02 │ ├── BuildF_exp.sol │ ├── Meter_exp.sol │ ├── Sandbox_exp.sol │ └── TecraSpace_exp.sol │ ├── 2022-03 │ ├── Agave_exp.sol │ ├── Auctus_exp.sol │ ├── Bacon_exp.sol │ ├── CompoundTusd_exp.sol │ ├── Fantasm_exp.sol │ ├── HundredFinance_exp.sol │ ├── LiFi_exp.sol │ ├── OneRing_exp.sol │ ├── Paraluni_exp.sol │ ├── RedactedCartel_exp.sol │ ├── Revest_exp.sol │ ├── Ronin_exp.sol │ ├── TreasureDAO_exp.sol │ └── Umbrella_exp.sol │ ├── 2022-04 │ ├── AkutarNFT_exp.sol │ ├── Beanstalk_exp.sol │ ├── Elephant_Money_exp.sol │ ├── Gym_1_exp.sol │ ├── Rari_exp.sol │ ├── Rikkei_exp.sol │ ├── Saddle_exp.sol │ ├── Wdoge_exp.sol │ ├── Zeed_exp.sol │ ├── cftoken_exp.sol │ └── deus_exp.sol │ ├── 2022-05 │ ├── Bayc_apecoin_exp.sol │ ├── FortressLoans_exp.sol │ ├── HackDao_exp.sol │ └── Novo_exp.sol │ ├── 2022-06 │ ├── Discover_exp.sol │ ├── Gym_2_exp.sol │ ├── Harmony_multisig_exp.sol │ ├── InverseFinance_exp.sol │ ├── Optimism_exp.sol │ ├── Snood_exp.sol │ └── XCarnival_exp.sol │ ├── 2022-07 │ ├── Audius_exp.sol │ ├── FlippazOne_exp.sol │ ├── LPC_exp.sol │ ├── Omni_exp.sol │ ├── Quixotic_exp.sol │ └── SpaceGodzilla_exp.sol │ ├── 2022-08 │ ├── ANCH_exp.sol │ ├── Circle_exp1.sol │ ├── Circle_exp2.sol │ ├── DDC_exp.sol │ ├── EGD_Finance_exp.sol │ ├── EtnProduct_exp.sol │ ├── LuckyTiger_exp.sol │ ├── NomadBridge_exp.sol │ ├── Qixi_exp.sol │ ├── ReaperFarm_exp.sol │ ├── XST_exp.sol │ └── XST_exp2.sol │ ├── 2022-09 │ ├── BNB48MEVBot_exp.sol │ ├── BXH_exp.sol │ ├── BadGuysbyRPF_exp.sol │ ├── DPC_exp.sol │ ├── MEVbadc0de_exp.sol │ ├── NXUSD_exp.sol │ ├── NewFreeDAO_exp.sol │ ├── RADT_exp.sol │ ├── ROI_exp.sol │ ├── Shadowfi_exp.sol │ ├── THB_exp.sol │ ├── Yyds_exp.sol │ └── ZoomproFinance_exp.sol │ ├── 2022-10 │ ├── ATK_exp.sol │ ├── BEGO_exp.sol │ ├── BabySwap_exp.sol │ ├── Carrot_exp.sol │ ├── EFLeverVault_exp.sol │ ├── HEALTH_exp.sol │ ├── HPAY_exp.sol │ ├── INUKO_exp.sol │ ├── MEVa47b_exp.sol │ ├── Market_exp.sol │ ├── MulticallWithoutCheck_exp.sol │ ├── N00d_exp.sol │ ├── OlympusDao_exp.sol │ ├── PLTD_exp.sol │ ├── RES_exp.sol │ ├── RES_exp2.sol │ ├── RL_exp.sol │ ├── RabbyWallet_SwapRouter_exp.sol │ ├── TeamFinance_exp.sol │ ├── Templedao_exp.sol │ ├── TransitSwap_exp.sol │ ├── ULME_exp.sol │ ├── ULME_exp2.sol │ ├── Uerii_exp.sol │ ├── VTF_exp.sol │ └── XaveFinance_exp.sol │ ├── 2022-11 │ ├── AUR_exp.sol │ ├── Annex_exp.sol │ ├── BDEX_exp.sol │ ├── BrahTOPG_exp.sol │ ├── DFX_exp.sol │ ├── Kashi_exp.sol │ ├── MBC_ZZSH_exp.sol │ ├── MEV_0ad8_exp.sol │ ├── MooCAKECTX_exp.sol │ ├── NUM_exp.sol │ ├── Polynomial_exp.sol │ ├── SDAO_exp.sol │ ├── SEAMAN_exp.sol │ ├── SheepFarm2_exp.sol │ ├── SheepFarm_exp.sol │ └── UEarnPool_exp.sol │ ├── 2022-12 │ ├── AES_exp.sol │ ├── APC_exp.sol │ ├── BBOX_exp.sol │ ├── BGLD_exp.sol │ ├── DFS_exp.sol │ ├── Defrost_exp.sol │ ├── ElasticSwap_exp.sol │ ├── FPR_exp.sol │ ├── JAY_exp.sol │ ├── Lodestar_exp.sol │ ├── MEVbot_0x28d9_exp.sol │ ├── MUMUG_exp.sol │ ├── Nmbplatform_exp.sol │ ├── NovaExchange_exp.sol │ ├── Overnight_exp.sol │ ├── RFB_exp.sol │ ├── Rubic_exp.sol │ └── TIFI_exp.sol │ ├── 2023-01 │ ├── BEVO_exp.sol │ ├── BRA_exp.sol │ ├── GDS_exp.sol │ ├── Midas_exp.sol │ ├── OmniEstate_exp.sol │ ├── QTN_exp.sol │ ├── RoeFinance_exp.sol │ ├── SHOCO_exp.sol │ ├── TINU_exp.sol │ ├── ThoreumFinance_exp.sol │ ├── UFDao_exp.sol │ └── Upswing_exp.sol │ ├── 2023-02 │ ├── BonqDAO_exp.sol │ ├── CowSwap_exp.sol │ ├── DYNA_exp.sol │ ├── Dexible_exp.sol │ ├── EFVault_exp.sol │ ├── FDP_exp.sol │ ├── LaunchZone_exp.sol │ ├── Orion_exp.sol │ ├── Platypus_exp.sol │ ├── RevertFinance_exp.sol │ ├── Sheep_exp.sol │ ├── Starlink_exp.sol │ ├── SwapX_exp.sol │ ├── USDs_exp.sol │ └── dForce_exp.sol │ ├── 2023-03 │ ├── BIGFI_exp.sol │ ├── DBW_exp.sol │ ├── DKP_exp.sol │ ├── Euler_exp.sol │ ├── Paraspace_exp_2.sol │ ├── Phoenix_exp.sol │ ├── Thena_exp.sol │ ├── paraspace_exp.sol │ ├── poolz_exp.sol │ └── safeMoon_exp.sol │ ├── 2023-04 │ ├── 0vix_exp.sol │ ├── Allbridge_exp.sol │ ├── Allbridge_exp2.sol │ ├── Axioma_exp.sol │ ├── HundredFinance_2_exp.sol │ ├── MetaPoint_exp.sol │ ├── OLIFE_exp.sol │ ├── Paribus_exp.sol │ ├── Sentiment_exp.sol │ ├── Sushi_Router_exp.sol │ ├── Swapos_exp.sol │ ├── YearnFinance_exp.sol │ └── silo_finance_exp.sol │ ├── 2023-05 │ ├── BabyDogeCoin_exp.sol │ ├── Bitpaidio_exp.sol │ ├── CS_exp.sol │ ├── DEI_exp.sol │ ├── ERC20TokenBank_exp.sol │ ├── FAPEN_exp.sol │ ├── GPT_exp.sol │ ├── HODLCapital_exp.sol │ ├── Jimbo_exp.sol │ ├── LFI_exp.sol │ ├── LW_exp.sol │ ├── Level_exp.sol │ ├── LocalTrader2_exp.sol │ ├── LocalTrader_exp.sol │ ├── Melo_exp.sol │ ├── MultiChainCapital_exp.sol │ ├── NOON_exp.sol │ ├── NeverFall_exp.sol │ ├── SELLC02_exp.sol │ ├── SELLC_exp.sol │ ├── SNK_exp.sol │ ├── SellToken_exp.sol │ └── landNFT_exp.sol │ ├── 2023-06 │ ├── ARA_exp.sol │ ├── BUNN_exp.sol │ ├── BabyDogeCoin02_exp.sol │ ├── Biswap_exp.sol │ ├── CFC_exp.sol │ ├── Cellframe_exp.sol │ ├── CompounderFinance_exp.sol │ ├── Contract_0x7657_exp.sol │ ├── DDCoin_exp.sol │ ├── DEPUSDT_LEVUSDC_exp.sol │ ├── MIMSpell_exp.sol │ ├── MidasCapitalXYZ_exp.sol │ ├── MyAi_exp.sol │ ├── NST_exp.sol │ ├── Pawnfi_exp.sol │ ├── SELLC03_exp.sol │ ├── SHIDO_exp.sol │ ├── SHIDO_exp2.sol │ ├── STRAC_exp.sol │ ├── Sturdy_exp.sol │ ├── Themis_exp.sol │ ├── UN_exp.sol │ ├── UnverifiedContr_9ad32_exp.sol │ └── VINU_exp.sol │ ├── 2023-07 │ ├── ApeDAO_exp.sol │ ├── ArcadiaFi_exp.sol │ ├── AzukiDAO_exp.sol │ ├── BNO_exp.sol │ ├── Bamboo_exp.sol │ ├── Bao_exp.sol │ ├── CIVNFT_exp.sol │ ├── Carson_exp.sol │ ├── Civfund_exp.sol │ ├── Conic02_exp.sol │ ├── Conic_exp.sol │ ├── Conic_exp2.sol │ ├── Curve_exp01.sol │ ├── Curve_exp02.sol │ ├── FFIST_exp.sol │ ├── GYMNET_exp.sol │ ├── LUSD_exp.sol │ ├── Libertify_exp.sol │ ├── MintoFinance_exp.sol │ ├── NewFi_exp.sol │ ├── Palmswap_exp.sol │ ├── Platypus02_exp.sol │ ├── RodeoFinance_exp.sol │ ├── SUT_exp.sol │ ├── USDTStakingContract28_exp.sol │ ├── Utopia_exp.sol │ └── WGPT_exp.sol │ ├── 2023-08 │ ├── BTC20_exp.sol │ ├── Balancer_exp.sol │ ├── CurveBurner_exp.sol │ ├── EAC_exp.sol │ ├── EHIVE_exp.sol │ ├── EarningFram_exp.sol │ ├── Exactly_exp.sol │ ├── GSS_exp.sol │ ├── Leetswap_exp.sol │ ├── NeutraFinance_exp.sol │ ├── SVT_exp.sol │ ├── Uwerx_exp.sol │ └── Zunami_exp.sol │ ├── 2023-09 │ ├── 0x0DEX_exp.sol │ ├── APIG_exp.sol │ ├── BFCToken_exp.sol │ ├── CEXISWAP_exp.sol │ ├── DAppSocial_exp.sol │ ├── DEXRouter_exp.sol │ ├── FireBirdPair_exp.sol │ ├── FloorDAO_exp.sol │ ├── HCT_exp.sol │ ├── HeavensGate_exp.sol │ ├── JumpFarm_exp.sol │ ├── Kub_Split_exp.sol │ ├── QuantumWN_exp.sol │ ├── XSDWETHpool_exp.sol │ └── uniclyNFT_exp.sol │ ├── 2023-10 │ ├── Astrid_exp.sol │ ├── BH_exp.sol │ ├── BelugaDex_exp.sol │ ├── DePayRouter_exp.sol │ ├── Hopelend_exp.sol │ ├── LaEeb_exp.sol │ ├── MaestroRouter2_exp.sol │ ├── MicDao_exp.sol │ ├── OpenLeverage_exp.sol │ ├── Platypus03_exp.sol │ ├── StarsArena_exp.sol │ ├── UniBot_exp.sol │ ├── WiseLending_exp.sol │ ├── ZS_exp.sol │ ├── kTAF_exp.sol │ └── pSeudoEth_exp.sol │ ├── 2023-11 │ ├── 3913_exp.sol │ ├── AIS_exp.sol │ ├── BRAND_exp.sol │ ├── Burntbubba_exp.sol │ ├── CAROLProtocol_exp.sol │ ├── EEE_exp.sol │ ├── EHX_exp.sol │ ├── FiberRouter_exp.sol │ ├── KR_exp.sol │ ├── KyberSwap │ │ ├── interfaces │ │ │ ├── IFactory.sol │ │ │ ├── IPool.sol │ │ │ ├── oracle │ │ │ │ └── IPoolOracle.sol │ │ │ ├── periphery │ │ │ │ ├── IBasePositionManager.sol │ │ │ │ ├── IRouterTokenHelper.sol │ │ │ │ └── base_position_manager │ │ │ │ │ └── IBasePositionManagerEvents.sol │ │ │ ├── pool │ │ │ │ ├── IPoolActions.sol │ │ │ │ ├── IPoolEvents.sol │ │ │ │ └── IPoolStorage.sol │ │ │ ├── token │ │ │ │ ├── ERC20 │ │ │ │ │ └── IERC20.sol │ │ │ │ └── ERC721 │ │ │ │ │ ├── IERC721.sol │ │ │ │ │ └── extensions │ │ │ │ │ ├── IERC721Enumerable.sol │ │ │ │ │ ├── IERC721Metadata.sol │ │ │ │ │ └── IERC721Permit.sol │ │ │ └── utils │ │ │ │ └── introspection │ │ │ │ └── IERC165.sol │ │ └── libraries │ │ │ ├── FullMath.sol │ │ │ ├── MathConstants.sol │ │ │ ├── QtyDeltaMath.sol │ │ │ ├── SafeCast.sol │ │ │ └── TickMath.sol │ ├── KyberSwap_exp.eth.1.sol │ ├── LinkDao_exp.sol │ ├── MEV_0x8c2d_exp.sol │ ├── MEV_0xa247_exp.sol │ ├── MahaLend_exp.sol │ ├── MetaLend_exp.sol │ ├── OKC_exp.sol │ ├── OnyxProtocol_exp.sol │ ├── RBalancer_exp.sol │ ├── Raft_exp.sol │ ├── ShibaToken_exp.sol │ ├── SwampFinance_exp.sol │ ├── TheNFTV2_exp.sol │ ├── TheStandard_io_exp.sol │ ├── Token8633_9419_exp.sol │ ├── TrustPad_exp.sol │ ├── WECO_exp.sol │ ├── XAI_exp.sol │ ├── bot_exp.sol │ └── grok_exp.sol │ ├── 2023-12 │ ├── BCT_exp.sol │ ├── BEARNDAO_exp.sol │ ├── Bob_exp.sol │ ├── CCV_exp.sol │ ├── ChannelsFinance_exp.sol │ ├── Channels_exp.sol │ ├── DominoTT_exp.sol │ ├── ElephantStatus_exp.sol │ ├── FloorProtocol_exp.sol │ ├── GoodCompound_exp.sol │ ├── GoodDollar_exp.sol │ ├── HNet_exp.sol │ ├── HYPR_exp.sol │ ├── KEST_exp.sol │ ├── MAMO_exp.sol │ ├── NFTTrader_exp.sol │ ├── PHIL_exp.sol │ ├── PineProtocol_exp.sol │ ├── TIME_exp.sol │ ├── Telcoin_exp.sol │ ├── TransitFinance_exp.sol │ ├── UnverifiedContr_0x431abb_exp.sol │ └── bZx_exp.sol │ ├── 2024-01 │ ├── BarleyFinance_exp.sol │ ├── Bmizapper_exp.sol │ ├── CitadelFinance_exp.sol │ ├── DAO_SoulMate_exp.sol │ ├── Freedom_exp.sol │ ├── Gamma_exp.sol │ ├── LQDX_alert_exp.sol │ ├── MIC_exp.sol │ ├── MIMSpell2_exp.sol │ ├── NBLGAME_exp.sol │ ├── OrbitChain_exp.sol │ ├── PeapodsFinance_exp.sol │ ├── RadiantCapital_exp.sol │ ├── Shell_MEV_0xa898_exp.sol │ ├── SocketGateway_exp.sol │ ├── WiseLending02_exp.sol │ ├── WiseLending03_exp.sol │ └── XSIJ_exp.sol │ ├── 2024-02 │ ├── ADC_exp.sol │ ├── AffineDeFi_exp.sol │ ├── Babyloogn_exp.sol │ ├── BlueberryProtocol_exp.sol │ ├── BurnsDefi_exp.sol │ ├── CompoundUni_exp.sol │ ├── DN404_exp.sol │ ├── DeezNutz404_exp.sol │ ├── DualPools_exp.sol │ ├── EGGX_exp.sol │ ├── GAIN_exp.sol │ ├── Game_exp.sol │ ├── MINER_bsc_exp.sol │ ├── Miner_exp.sol │ ├── PANDORA_exp.sol │ ├── ParticleTrade_exp.sol │ ├── RuggedArt_exp.sol │ ├── SMOOFSStaking_exp.sol │ ├── Seneca_exp.sol │ ├── SwarmMarkets_exp.sol │ └── Zoomer_exp.sol │ ├── 2024-03 │ ├── ALP_exp.sol │ ├── ARK_exp.sol │ ├── BBT_exp.sol │ ├── Binemon_exp.sol │ ├── CGT_exp.sol │ ├── ETHFIN_exp.sol │ ├── GHT_exp.sol │ ├── IT_exp.sol │ ├── Juice_exp.sol │ ├── LavaLending_exp.sol │ ├── MO_exp.sol │ ├── Paraswap_exp.sol │ ├── Prisma_exp.sol │ ├── SSS_exp.sol │ ├── TGBS_exp.sol │ ├── UnizenIO2_exp.sol │ ├── UnizenIO_exp.sol │ ├── Woofi_exp.sol │ └── ZongZi_exp.sol │ ├── 2024-04 │ ├── ATM_exp.sol │ ├── BNBX_exp.sol │ ├── BigBangSwap_exp.sol │ ├── ChaingeFinance_exp.sol │ ├── FIL314_exp.sol │ ├── GFA_exp.sol │ ├── GROKD_exp.sol │ ├── Hackathon_exp.sol │ ├── HedgeyFinance_exp.sol │ ├── HoppyFrogERC_exp.sol │ ├── MARS_exp.sol │ ├── NGFS_exp.sol │ ├── OpenLeverage2_exp.sol │ ├── PikeFinance_exp.sol │ ├── Rico_exp.sol │ ├── SATX_exp.sol │ ├── SQUID_exp.sol │ ├── SumerMoney_exp.sol │ ├── UPS_exp.sol │ ├── UnverifiedContr_0x00C409_exp.sol │ ├── WSM_exp.sol │ ├── XBridge_exp.sol │ ├── YIEDL_exp.sol │ ├── Yield_exp.sol │ └── Z123_exp.sol │ ├── 2024-05 │ ├── Burner_exp.sol │ ├── EXcommunity_exp.sol │ ├── GFOX_exp.sol │ ├── GPU_exp.sol │ ├── Liquiditytokens_exp.sol │ ├── MetaDragon_exp.sol │ ├── MixedSwapRouter_exp.sol │ ├── NORMIE_exp.sol │ ├── OSN_exp.sol │ ├── PredyFinance_exp.sol │ ├── RedKeysCoin_exp.sol │ ├── SATURN_exp.sol │ ├── SCROLL_exp.sol │ ├── Sonne_exp.sol │ ├── TCH_exp.sol │ ├── TGC_exp.sol │ ├── TSURU_exp.sol │ └── Tradeonorion_exp.sol │ ├── 2024-06 │ ├── APEMAGA_exp.sol │ ├── Bazaar_exp.sol │ ├── Crb2_exp.sol │ ├── Dyson_money_exp.sol │ ├── INcufi_exp.sol │ ├── JokInTheBox_exp.sol │ ├── MineSTM_exp.sol │ ├── NCD_exp.sol │ ├── SteamSwap_exp.sol │ ├── UwuLend_First_exp.sol │ ├── UwuLend_Second_exp.sol │ ├── Velocore_exp.sol │ ├── WIFCOIN_ETH_exp.sol │ ├── Will_exp.sol │ └── YYS_exp.sol │ ├── 2024-07 │ ├── DeFiPlaza_exp.sol │ ├── DoughFina_exp.sol │ ├── GAX_exp.sol │ ├── LW_exp.sol │ ├── Lifiprotocol_exp.sol │ ├── MEVbot_0xdd7c_exp.sol │ ├── MRP_exp.sol │ ├── Minterest_exp.sol │ ├── SBT_exp.sol │ ├── Spectra_finance_exp.sol │ └── UnverifiedContr_0x452E25_exp.sol │ ├── 2024-08 │ ├── AAVE_Repay_Adapter.sol │ ├── COCO_exp.sol │ ├── Convergence_exp.sol │ ├── IvestDao_exp.sol │ ├── NovaXM2E_exp.sol │ ├── OMPxContract_exp.sol │ ├── VOW_exp.sol │ ├── YodlRouter_exp.sol │ ├── Zenterest_exp.sol │ └── unverified_667d_exp.sol │ ├── 2024-09 │ ├── AIRBTC_exp.sol │ ├── Bankroll_exp.sol │ ├── Bedrock_DeFi_exp.sol │ ├── Caterpillar_Coin_CUT_exp.sol │ ├── DOGGO_exp.sol │ ├── HANAToken_exp.sol │ ├── INUMI_exp.sol │ ├── MARA_exp.sol │ ├── OTSeaStaking_exp.sol │ ├── OnyxDAO_exp.sol │ ├── PLN_exp.sol │ ├── Penpiexyzio_exp.sol │ ├── PestoToken_exp.sol │ ├── Pythia_exp.sol │ ├── Shezmu_exp.sol │ ├── WXETA_exp.sol │ ├── unverified_03f9_exp.sol │ ├── unverified_16d0.sol │ ├── unverified_5697_exp.sol │ ├── unverified_766a_exp.sol │ └── unverified_a89f_exp.sol │ ├── 2024-10 │ ├── AIZPTToken_exp.sol │ ├── BUBAI_exp.sol │ ├── CompoundFork_exploit.sol │ ├── Erc20transfer_exp.sol │ ├── FireToken_exp.sol │ ├── HYDT_exp.sol │ ├── LavaLending_exp.sol │ ├── MorphoBlue_exp.sol │ ├── P719Token_exp.sol │ ├── SASHAToken_exp.sol │ └── VISTA_exp.sol │ ├── 2024-11 │ ├── Ak1111_exp.sol │ ├── ChiSale_exp.sol │ ├── CoW_exp.sol │ ├── DelatPrimePriceData.txt │ ├── DeltaPrime_exp.sol │ ├── MFT_exp.sol │ ├── MainnetSettler_exp.sol │ ├── Matez_exp.sol │ ├── NFTG_exp.sol │ ├── PolterFinance_exploit.sol │ ├── RPP_exp.sol │ ├── VRug_exp.sol │ ├── X319_exp.sol │ ├── proxy_b7e1_exp.sol │ └── vETH_exp.sol │ ├── 2024-12 │ ├── BTC24H_exp.sol │ ├── Bizness_exp.sol │ ├── CloberDEX_exp.sol │ ├── JHY_exp.sol │ ├── LABUBU_exp.sol │ ├── Moonhacker_exp.sol │ ├── Pledge_exp.sol │ └── SlurpyCoin_exp.sol │ ├── 2025-01 │ ├── 98Token_exp.sol │ ├── Ast_exp.sol │ ├── HORS_exp.sol │ ├── IPC_exp.sol │ ├── IdolsNFT_exp.sol │ ├── JPulsepot_exp.sol │ ├── LAURAToken_exp.sol │ ├── LPMine_exp.sol │ ├── Mosca2_exp.sol │ ├── Mosca_exp.sol │ ├── ODOS_exp.sol │ ├── Paribus_exp.sol │ ├── RoulettePotV2_exp.sol │ ├── Unilend_exp.sol │ └── sorraStaking.sol │ ├── 2025-02 │ ├── Bybit_exp.sol │ ├── FourMeme_exp.sol │ ├── HegicOptions_exp.sol │ ├── PeapodsFinance_exp.sol │ ├── StepHeroNFTs_exp.sol │ ├── unverified_35bc_exp.sol │ └── unverified_d4f1_exp.sol │ ├── 2025-03 │ ├── Alkimiya_io_exp.sol │ ├── BBXToken_exp.sol │ ├── DCFToken_exp.sol │ ├── DUCKVADER_exp.sol │ ├── H2O_exp.sol │ ├── LeverageSIR_exp.sol │ ├── OneInchFusionV1SettlementHack.sol_exp.sol │ ├── Pump_exp.sol │ ├── SBRToken_exp.sol │ ├── UNI_exp.sol │ ├── YziAIToken_exp.sol │ └── wKeyDAO_exp.sol │ ├── 2025-04 │ ├── AIRWA_exp.sol │ ├── BTNFT_exp.sol │ ├── ImpermaxV3_exp.sol │ ├── Laundromat_exp.sol │ ├── Lifeprotocol_exp.sol │ ├── Roar_exp.sol │ ├── Unverified_6077_exp.sol │ └── YBToken_exp.sol │ ├── 2025-05 │ ├── Corkprotocol_exp.sol │ ├── IRYSAI_exp.sol │ ├── KRCToken_pair_exp.sol │ ├── MBUToken_exp.sol │ ├── Nalakuvara_LotteryTicket50_exp.sol │ ├── RICE_exp.sol │ ├── Unwarp_exp.sol │ ├── UsualMoney_exp.sol │ └── YDTtoken_exp.sol │ ├── 2025-06 │ ├── AAVEBoost_exp.sol │ ├── BankrollNetwork_exp.sol │ ├── BankrollStack_exp.sol │ ├── Gangsterfinance_exp.sol │ ├── GradientMakerPool_exp.sol │ ├── MetaPool_exp.sol │ ├── ResupplyFi_exp.sol │ ├── Stead_exp.sol │ ├── unverified_8490_exp.sol │ └── unverified_b5cb_exp.sol │ ├── 2025-07 │ ├── FPC_exp.sol │ ├── MulticallWithETH_exp.sol │ ├── RANTToken_exp.sol │ ├── SWAPPStaking_exp.sol │ ├── Stepp2p_exp.sol │ ├── SuperRare_exp.sol │ ├── VDS_exp.sol │ ├── WETC_Token_exp.sol │ ├── gmx_exp.sol │ └── unverified_54cd_exp.sol │ ├── 2025-08 │ ├── 0x8d2e_exp.sol │ ├── 0xf340_exp.sol │ ├── ABCCApp_exp.sol │ ├── Bebop_dex_exp.sol │ ├── EverValueCoin_exp.sol │ ├── Grizzifi_exp.sol │ ├── Hexotic_exp.sol │ ├── MulticallWithXera_exp.sol │ ├── PDZ_exp.sol │ ├── SizeCredit_exp.sol │ ├── WXC_Token_exp.sol │ ├── YuliAI_exp.sol │ ├── coinbase_exp.sol │ └── d3xai_exp.sol │ ├── 2025-09 │ └── Kame_exp.sol │ ├── 2025-10 │ ├── MIMSpell3_exp.sol │ ├── SharwaFinance_exp.sol │ └── TokenHolder_exp.sol │ ├── 2025-11 │ ├── BalancerV2_exp.sol │ ├── DRLVaultV3_exp.sol │ └── Moonwell_exp.sol │ ├── 2025-12 │ └── yETH_exp.sol │ ├── IUNMI_db27_exp.sol │ ├── StableMath.sol │ ├── basetest.sol │ ├── interface.sol │ └── tokenhelper.sol └── test.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/poc-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/.github/ISSUE_TEMPLATE/poc-request.md -------------------------------------------------------------------------------- /.github/workflows/PRAutoTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/.github/workflows/PRAutoTest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120 3 | } 4 | -------------------------------------------------------------------------------- /AudiusPocGasReport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/AudiusPocGasReport.gif -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/README.md -------------------------------------------------------------------------------- /academy/move/01_move_sec_intro/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/move/01_move_sec_intro/en/readme.md -------------------------------------------------------------------------------- /academy/move/01_move_sec_intro/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/move/01_move_sec_intro/readme.md -------------------------------------------------------------------------------- /academy/move/02_move_power/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/move/02_move_power/en/readme.md -------------------------------------------------------------------------------- /academy/move/02_move_power/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/move/02_move_power/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/01_tools/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/01_tools/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/01_tools/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/01_tools/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/01_tools/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/01_tools/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/01_tools/ko/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/01_tools/ko/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/01_tools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/01_tools/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/01_tools/vi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/01_tools/vi/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/02_warmup/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/02_warmup/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/02_warmup/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/02_warmup/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/02_warmup/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/02_warmup/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/02_warmup/ko/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/02_warmup/ko/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/02_warmup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/02_warmup/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/03_write_your_own_poc/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/03_write_your_own_poc/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/03_write_your_own_poc/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/03_write_your_own_poc/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/03_write_your_own_poc/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/03_write_your_own_poc/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/03_write_your_own_poc/ko/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/03_write_your_own_poc/ko/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/03_write_your_own_poc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/03_write_your_own_poc/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/04_write_your_own_poc/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/04_write_your_own_poc/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/04_write_your_own_poc/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/04_write_your_own_poc/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/04_write_your_own_poc/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/04_write_your_own_poc/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/04_write_your_own_poc/kr/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/04_write_your_own_poc/kr/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/04_write_your_own_poc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/04_write_your_own_poc/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/05_Rugpull/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/05_Rugpull/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/05_Rugpull/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/05_Rugpull/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/05_Rugpull/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/05_Rugpull/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/05_Rugpull/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/05_Rugpull/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/06_write_your_own_poc/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/06_write_your_own_poc/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/06_write_your_own_poc/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/06_write_your_own_poc/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/06_write_your_own_poc/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/06_write_your_own_poc/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/06_write_your_own_poc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/06_write_your_own_poc/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/07_Analysis_nomad_bridge/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/07_Analysis_nomad_bridge/en/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/07_Analysis_nomad_bridge/es/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/07_Analysis_nomad_bridge/es/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/07_Analysis_nomad_bridge/ja/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/07_Analysis_nomad_bridge/ja/readme.md -------------------------------------------------------------------------------- /academy/onchain_debug/07_Analysis_nomad_bridge/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/onchain_debug/07_Analysis_nomad_bridge/readme.md -------------------------------------------------------------------------------- /academy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/readme.md -------------------------------------------------------------------------------- /academy/solidity/01_audit/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/solidity/01_audit/en/readme.md -------------------------------------------------------------------------------- /academy/solidity/01_audit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/solidity/01_audit/readme.md -------------------------------------------------------------------------------- /academy/solidity/02_first_deposit/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/solidity/02_first_deposit/en/readme.md -------------------------------------------------------------------------------- /academy/solidity/02_first_deposit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/solidity/02_first_deposit/readme.md -------------------------------------------------------------------------------- /academy/solidity/03_lsd_audit/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/solidity/03_lsd_audit/en/readme.md -------------------------------------------------------------------------------- /academy/solidity/03_lsd_audit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/solidity/03_lsd_audit/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/01_handbook/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/01_handbook/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/01_handbook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/01_handbook/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/02_CommonScam/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/02_CommonScam/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/02_CommonScam/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/02_CommonScam/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/03_HoneyPot/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/03_HoneyPot/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/03_HoneyPot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/03_HoneyPot/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/04_NFTScam/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/04_NFTScam/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/04_NFTScam/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/04_NFTScam/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/05_Address_poisoning/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/05_Address_poisoning/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/05_Address_poisoning/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/05_Address_poisoning/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/06_Report_stolen/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/06_Report_stolen/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/06_Report_stolen/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/06_Report_stolen/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/07_offline_sign/7-1/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/07_offline_sign/7-1/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/07_offline_sign/7-1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/07_offline_sign/7-1/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/07_offline_sign/7-2/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/07_offline_sign/7-2/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/07_offline_sign/7-2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/07_offline_sign/7-2/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/08_Anti_phishing_plugin/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/08_Anti_phishing_plugin/en/readme.md -------------------------------------------------------------------------------- /academy/user_awareness/08_Anti_phishing_plugin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/academy/user_awareness/08_Anti_phishing_plugin/readme.md -------------------------------------------------------------------------------- /add_new_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/add_new_entry.py -------------------------------------------------------------------------------- /foundry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/foundry.lock -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/foundry.toml -------------------------------------------------------------------------------- /past/2021/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/past/2021/README.md -------------------------------------------------------------------------------- /past/2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/past/2022/README.md -------------------------------------------------------------------------------- /past/2023/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/past/2023/README.md -------------------------------------------------------------------------------- /past/2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/past/2024/README.md -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/remappings.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | toml -------------------------------------------------------------------------------- /script/Exploit-template.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/script/Exploit-template.sol -------------------------------------------------------------------------------- /script/Exploit-template_new.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/script/Exploit-template_new.sol -------------------------------------------------------------------------------- /src/Poc-template.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/Poc-template.sol -------------------------------------------------------------------------------- /src/RPCS_alive_test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/RPCS_alive_test.sol -------------------------------------------------------------------------------- /src/test/2017-11/Parity_kill_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2017-11/Parity_kill_exp.sol -------------------------------------------------------------------------------- /src/test/2018-04/BEC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2018-04/BEC_exp.sol -------------------------------------------------------------------------------- /src/test/2018-04/SmartMesh_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2018-04/SmartMesh_exp.sol -------------------------------------------------------------------------------- /src/test/2018-10/SpankChain_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2018-10/SpankChain_exp.sol -------------------------------------------------------------------------------- /src/test/2020-04/LendfMe_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-04/LendfMe_exp.sol -------------------------------------------------------------------------------- /src/test/2020-04/uniswap-erc777.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-04/uniswap-erc777.sol -------------------------------------------------------------------------------- /src/test/2020-06/Balancer_20200628_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-06/Balancer_20200628_exp.sol -------------------------------------------------------------------------------- /src/test/2020-06/Bancor_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-06/Bancor_exp.sol -------------------------------------------------------------------------------- /src/test/2020-08/Opyn_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-08/Opyn_exp.sol -------------------------------------------------------------------------------- /src/test/2020-09/bzx_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-09/bzx_exp.sol -------------------------------------------------------------------------------- /src/test/2020-10/HarvestFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-10/HarvestFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2020-11/Pickle_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-11/Pickle_exp.sol -------------------------------------------------------------------------------- /src/test/2020-12/Cover_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2020-12/Cover_exp.sol -------------------------------------------------------------------------------- /src/test/2021-01/Sushi_Badger_Digg_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-01/Sushi_Badger_Digg_exp.sol -------------------------------------------------------------------------------- /src/test/2021-02/Yearn_ydai_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-02/Yearn_ydai_exp.sol -------------------------------------------------------------------------------- /src/test/2021-03/PAID_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-03/PAID_exp.sol -------------------------------------------------------------------------------- /src/test/2021-03/dodo_flashloan_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-03/dodo_flashloan_exp.sol -------------------------------------------------------------------------------- /src/test/2021-04/Uranium_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-04/Uranium_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/BurgerSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/BurgerSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/JulSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/JulSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/PancakeBunny_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/PancakeBunny_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/RariCapital_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/RariCapital_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/Spartan_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/Spartan_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/ValueDefi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/ValueDefi_exp.sol -------------------------------------------------------------------------------- /src/test/2021-05/bEarn_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-05/bEarn_exp.sol -------------------------------------------------------------------------------- /src/test/2021-06/88mph_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-06/88mph_exp.sol -------------------------------------------------------------------------------- /src/test/2021-06/Eleven_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-06/Eleven_exp.sol -------------------------------------------------------------------------------- /src/test/2021-06/PancakeHunny_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-06/PancakeHunny_exp.sol -------------------------------------------------------------------------------- /src/test/2021-06/SafeDollar_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-06/SafeDollar_exp.sol -------------------------------------------------------------------------------- /src/test/2021-06/xWin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-06/xWin_exp.sol -------------------------------------------------------------------------------- /src/test/2021-07/Chainswap_exp1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-07/Chainswap_exp1.sol -------------------------------------------------------------------------------- /src/test/2021-07/Chainswap_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-07/Chainswap_exp2.sol -------------------------------------------------------------------------------- /src/test/2021-07/Levyathan_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-07/Levyathan_exp.sol -------------------------------------------------------------------------------- /src/test/2021-08/Cream_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-08/Cream_exp.sol -------------------------------------------------------------------------------- /src/test/2021-08/PolyNetwork_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-08/PolyNetwork_exp.sol -------------------------------------------------------------------------------- /src/test/2021-08/Popsicle_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-08/Popsicle_exp.sol -------------------------------------------------------------------------------- /src/test/2021-08/WaultFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-08/WaultFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2021-08/XSURGE_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-08/XSURGE_exp.sol -------------------------------------------------------------------------------- /src/test/2021-09/DaoMaker_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-09/DaoMaker_exp.sol -------------------------------------------------------------------------------- /src/test/2021-09/Nimbus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-09/Nimbus_exp.sol -------------------------------------------------------------------------------- /src/test/2021-09/NowSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-09/NowSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2021-09/Sushimiso_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-09/Sushimiso_exp.sol -------------------------------------------------------------------------------- /src/test/2021-09/ZABU_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-09/ZABU_exp.sol -------------------------------------------------------------------------------- /src/test/2021-10/Cream_2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-10/Cream_2_exp.sol -------------------------------------------------------------------------------- /src/test/2021-10/IndexedFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-10/IndexedFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2021-11/Mono_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-11/Mono_exp.sol -------------------------------------------------------------------------------- /src/test/2021-11/Ploutoz_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-11/Ploutoz_exp.sol -------------------------------------------------------------------------------- /src/test/2021-12/Grim_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-12/Grim_exp.sol -------------------------------------------------------------------------------- /src/test/2021-12/NerveBridge_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-12/NerveBridge_exp.sol -------------------------------------------------------------------------------- /src/test/2021-12/Visor_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2021-12/Visor_exp.sol -------------------------------------------------------------------------------- /src/test/2022-01/Anyswap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-01/Anyswap_exp.sol -------------------------------------------------------------------------------- /src/test/2022-01/Qubit_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-01/Qubit_exp.sol -------------------------------------------------------------------------------- /src/test/2022-02/BuildF_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-02/BuildF_exp.sol -------------------------------------------------------------------------------- /src/test/2022-02/Meter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-02/Meter_exp.sol -------------------------------------------------------------------------------- /src/test/2022-02/Sandbox_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-02/Sandbox_exp.sol -------------------------------------------------------------------------------- /src/test/2022-02/TecraSpace_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-02/TecraSpace_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Agave_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Agave_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Auctus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Auctus_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Bacon_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Bacon_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/CompoundTusd_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/CompoundTusd_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Fantasm_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Fantasm_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/HundredFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/HundredFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/LiFi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/LiFi_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/OneRing_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/OneRing_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Paraluni_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Paraluni_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/RedactedCartel_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/RedactedCartel_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Revest_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Revest_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Ronin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Ronin_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/TreasureDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/TreasureDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2022-03/Umbrella_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-03/Umbrella_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/AkutarNFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/AkutarNFT_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Beanstalk_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Beanstalk_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Elephant_Money_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Elephant_Money_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Gym_1_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Gym_1_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Rari_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Rari_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Rikkei_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Rikkei_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Saddle_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Saddle_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Wdoge_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Wdoge_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/Zeed_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/Zeed_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/cftoken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/cftoken_exp.sol -------------------------------------------------------------------------------- /src/test/2022-04/deus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-04/deus_exp.sol -------------------------------------------------------------------------------- /src/test/2022-05/Bayc_apecoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-05/Bayc_apecoin_exp.sol -------------------------------------------------------------------------------- /src/test/2022-05/FortressLoans_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-05/FortressLoans_exp.sol -------------------------------------------------------------------------------- /src/test/2022-05/HackDao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-05/HackDao_exp.sol -------------------------------------------------------------------------------- /src/test/2022-05/Novo_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-05/Novo_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/Discover_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/Discover_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/Gym_2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/Gym_2_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/Harmony_multisig_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/Harmony_multisig_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/InverseFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/InverseFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/Optimism_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/Optimism_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/Snood_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/Snood_exp.sol -------------------------------------------------------------------------------- /src/test/2022-06/XCarnival_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-06/XCarnival_exp.sol -------------------------------------------------------------------------------- /src/test/2022-07/Audius_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-07/Audius_exp.sol -------------------------------------------------------------------------------- /src/test/2022-07/FlippazOne_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-07/FlippazOne_exp.sol -------------------------------------------------------------------------------- /src/test/2022-07/LPC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-07/LPC_exp.sol -------------------------------------------------------------------------------- /src/test/2022-07/Omni_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-07/Omni_exp.sol -------------------------------------------------------------------------------- /src/test/2022-07/Quixotic_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-07/Quixotic_exp.sol -------------------------------------------------------------------------------- /src/test/2022-07/SpaceGodzilla_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-07/SpaceGodzilla_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/ANCH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/ANCH_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/Circle_exp1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/Circle_exp1.sol -------------------------------------------------------------------------------- /src/test/2022-08/Circle_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/Circle_exp2.sol -------------------------------------------------------------------------------- /src/test/2022-08/DDC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/DDC_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/EGD_Finance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/EGD_Finance_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/EtnProduct_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/EtnProduct_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/LuckyTiger_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/LuckyTiger_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/NomadBridge_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/NomadBridge_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/Qixi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/Qixi_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/ReaperFarm_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/ReaperFarm_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/XST_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/XST_exp.sol -------------------------------------------------------------------------------- /src/test/2022-08/XST_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-08/XST_exp2.sol -------------------------------------------------------------------------------- /src/test/2022-09/BNB48MEVBot_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/BNB48MEVBot_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/BXH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/BXH_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/BadGuysbyRPF_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/BadGuysbyRPF_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/DPC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/DPC_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/MEVbadc0de_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/MEVbadc0de_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/NXUSD_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/NXUSD_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/NewFreeDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/NewFreeDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/RADT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/RADT_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/ROI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/ROI_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/Shadowfi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/Shadowfi_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/THB_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/THB_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/Yyds_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/Yyds_exp.sol -------------------------------------------------------------------------------- /src/test/2022-09/ZoomproFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-09/ZoomproFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/ATK_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/ATK_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/BEGO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/BEGO_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/BabySwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/BabySwap_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/Carrot_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/Carrot_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/EFLeverVault_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/EFLeverVault_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/HEALTH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/HEALTH_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/HPAY_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/HPAY_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/INUKO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/INUKO_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/MEVa47b_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/MEVa47b_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/Market_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/Market_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/MulticallWithoutCheck_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/MulticallWithoutCheck_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/N00d_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/N00d_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/OlympusDao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/OlympusDao_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/PLTD_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/PLTD_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/RES_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/RES_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/RES_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/RES_exp2.sol -------------------------------------------------------------------------------- /src/test/2022-10/RL_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/RL_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/RabbyWallet_SwapRouter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/RabbyWallet_SwapRouter_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/TeamFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/TeamFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/Templedao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/Templedao_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/TransitSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/TransitSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/ULME_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/ULME_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/ULME_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/ULME_exp2.sol -------------------------------------------------------------------------------- /src/test/2022-10/Uerii_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/Uerii_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/VTF_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/VTF_exp.sol -------------------------------------------------------------------------------- /src/test/2022-10/XaveFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-10/XaveFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/AUR_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/AUR_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/Annex_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/Annex_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/BDEX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/BDEX_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/BrahTOPG_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/BrahTOPG_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/DFX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/DFX_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/Kashi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/Kashi_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/MBC_ZZSH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/MBC_ZZSH_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/MEV_0ad8_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/MEV_0ad8_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/MooCAKECTX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/MooCAKECTX_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/NUM_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/NUM_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/Polynomial_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/Polynomial_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/SDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/SDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/SEAMAN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/SEAMAN_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/SheepFarm2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/SheepFarm2_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/SheepFarm_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/SheepFarm_exp.sol -------------------------------------------------------------------------------- /src/test/2022-11/UEarnPool_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-11/UEarnPool_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/AES_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/AES_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/APC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/APC_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/BBOX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/BBOX_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/BGLD_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/BGLD_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/DFS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/DFS_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/Defrost_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/Defrost_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/ElasticSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/ElasticSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/FPR_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/FPR_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/JAY_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/JAY_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/Lodestar_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/Lodestar_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/MEVbot_0x28d9_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/MEVbot_0x28d9_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/MUMUG_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/MUMUG_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/Nmbplatform_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/Nmbplatform_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/NovaExchange_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/NovaExchange_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/Overnight_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/Overnight_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/RFB_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/RFB_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/Rubic_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/Rubic_exp.sol -------------------------------------------------------------------------------- /src/test/2022-12/TIFI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2022-12/TIFI_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/BEVO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/BEVO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/BRA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/BRA_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/GDS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/GDS_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/Midas_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/Midas_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/OmniEstate_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/OmniEstate_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/QTN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/QTN_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/RoeFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/RoeFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/SHOCO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/SHOCO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/TINU_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/TINU_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/ThoreumFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/ThoreumFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/UFDao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/UFDao_exp.sol -------------------------------------------------------------------------------- /src/test/2023-01/Upswing_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-01/Upswing_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/BonqDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/BonqDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/CowSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/CowSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/DYNA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/DYNA_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/Dexible_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/Dexible_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/EFVault_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/EFVault_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/FDP_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/FDP_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/LaunchZone_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/LaunchZone_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/Orion_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/Orion_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/Platypus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/Platypus_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/RevertFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/RevertFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/Sheep_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/Sheep_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/Starlink_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/Starlink_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/SwapX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/SwapX_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/USDs_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/USDs_exp.sol -------------------------------------------------------------------------------- /src/test/2023-02/dForce_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-02/dForce_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/BIGFI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/BIGFI_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/DBW_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/DBW_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/DKP_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/DKP_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/Euler_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/Euler_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/Paraspace_exp_2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/Paraspace_exp_2.sol -------------------------------------------------------------------------------- /src/test/2023-03/Phoenix_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/Phoenix_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/Thena_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/Thena_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/paraspace_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/paraspace_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/poolz_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/poolz_exp.sol -------------------------------------------------------------------------------- /src/test/2023-03/safeMoon_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-03/safeMoon_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/0vix_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/0vix_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/Allbridge_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Allbridge_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/Allbridge_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Allbridge_exp2.sol -------------------------------------------------------------------------------- /src/test/2023-04/Axioma_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Axioma_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/HundredFinance_2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/HundredFinance_2_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/MetaPoint_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/MetaPoint_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/OLIFE_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/OLIFE_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/Paribus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Paribus_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/Sentiment_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Sentiment_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/Sushi_Router_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Sushi_Router_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/Swapos_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/Swapos_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/YearnFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/YearnFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-04/silo_finance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-04/silo_finance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/BabyDogeCoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/BabyDogeCoin_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/Bitpaidio_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/Bitpaidio_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/CS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/CS_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/DEI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/DEI_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/ERC20TokenBank_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/ERC20TokenBank_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/FAPEN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/FAPEN_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/GPT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/GPT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/HODLCapital_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/HODLCapital_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/Jimbo_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/Jimbo_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/LFI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/LFI_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/LW_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/LW_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/Level_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/Level_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/LocalTrader2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/LocalTrader2_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/LocalTrader_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/LocalTrader_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/Melo_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/Melo_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/MultiChainCapital_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/MultiChainCapital_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/NOON_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/NOON_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/NeverFall_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/NeverFall_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/SELLC02_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/SELLC02_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/SELLC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/SELLC_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/SNK_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/SNK_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/SellToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/SellToken_exp.sol -------------------------------------------------------------------------------- /src/test/2023-05/landNFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-05/landNFT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/ARA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/ARA_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/BUNN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/BUNN_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/BabyDogeCoin02_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/BabyDogeCoin02_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/Biswap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/Biswap_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/CFC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/CFC_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/Cellframe_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/Cellframe_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/CompounderFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/CompounderFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/Contract_0x7657_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/Contract_0x7657_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/DDCoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/DDCoin_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/DEPUSDT_LEVUSDC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/DEPUSDT_LEVUSDC_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/MIMSpell_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/MIMSpell_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/MidasCapitalXYZ_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/MidasCapitalXYZ_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/MyAi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/MyAi_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/NST_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/NST_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/Pawnfi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/Pawnfi_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/SELLC03_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/SELLC03_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/SHIDO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/SHIDO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/SHIDO_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/SHIDO_exp2.sol -------------------------------------------------------------------------------- /src/test/2023-06/STRAC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/STRAC_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/Sturdy_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/Sturdy_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/Themis_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/Themis_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/UN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/UN_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/UnverifiedContr_9ad32_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/UnverifiedContr_9ad32_exp.sol -------------------------------------------------------------------------------- /src/test/2023-06/VINU_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-06/VINU_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/ApeDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/ApeDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/ArcadiaFi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/ArcadiaFi_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/AzukiDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/AzukiDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/BNO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/BNO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Bamboo_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Bamboo_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Bao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Bao_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/CIVNFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/CIVNFT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Carson_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Carson_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Civfund_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Civfund_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Conic02_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Conic02_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Conic_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Conic_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Conic_exp2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Conic_exp2.sol -------------------------------------------------------------------------------- /src/test/2023-07/Curve_exp01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Curve_exp01.sol -------------------------------------------------------------------------------- /src/test/2023-07/Curve_exp02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Curve_exp02.sol -------------------------------------------------------------------------------- /src/test/2023-07/FFIST_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/FFIST_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/GYMNET_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/GYMNET_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/LUSD_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/LUSD_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Libertify_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Libertify_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/MintoFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/MintoFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/NewFi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/NewFi_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Palmswap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Palmswap_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Platypus02_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Platypus02_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/RodeoFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/RodeoFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/SUT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/SUT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/USDTStakingContract28_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/USDTStakingContract28_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/Utopia_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/Utopia_exp.sol -------------------------------------------------------------------------------- /src/test/2023-07/WGPT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-07/WGPT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/BTC20_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/BTC20_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/Balancer_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/Balancer_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/CurveBurner_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/CurveBurner_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/EAC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/EAC_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/EHIVE_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/EHIVE_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/EarningFram_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/EarningFram_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/Exactly_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/Exactly_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/GSS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/GSS_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/Leetswap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/Leetswap_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/NeutraFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/NeutraFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/SVT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/SVT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/Uwerx_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/Uwerx_exp.sol -------------------------------------------------------------------------------- /src/test/2023-08/Zunami_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-08/Zunami_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/0x0DEX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/0x0DEX_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/APIG_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/APIG_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/BFCToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/BFCToken_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/CEXISWAP_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/CEXISWAP_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/DAppSocial_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/DAppSocial_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/DEXRouter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/DEXRouter_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/FireBirdPair_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/FireBirdPair_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/FloorDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/FloorDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/HCT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/HCT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/HeavensGate_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/HeavensGate_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/JumpFarm_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/JumpFarm_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/Kub_Split_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/Kub_Split_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/QuantumWN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/QuantumWN_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/XSDWETHpool_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/XSDWETHpool_exp.sol -------------------------------------------------------------------------------- /src/test/2023-09/uniclyNFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-09/uniclyNFT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/Astrid_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/Astrid_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/BH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/BH_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/BelugaDex_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/BelugaDex_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/DePayRouter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/DePayRouter_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/Hopelend_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/Hopelend_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/LaEeb_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/LaEeb_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/MaestroRouter2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/MaestroRouter2_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/MicDao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/MicDao_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/OpenLeverage_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/OpenLeverage_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/Platypus03_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/Platypus03_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/StarsArena_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/StarsArena_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/UniBot_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/UniBot_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/WiseLending_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/WiseLending_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/ZS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/ZS_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/kTAF_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/kTAF_exp.sol -------------------------------------------------------------------------------- /src/test/2023-10/pSeudoEth_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-10/pSeudoEth_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/3913_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/3913_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/AIS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/AIS_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/BRAND_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/BRAND_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/Burntbubba_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/Burntbubba_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/CAROLProtocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/CAROLProtocol_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/EEE_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/EEE_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/EHX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/EHX_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/FiberRouter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/FiberRouter_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/KR_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KR_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/IFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/IFactory.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/IPool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/IPool.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/oracle/IPoolOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/oracle/IPoolOracle.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/periphery/IBasePositionManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/periphery/IBasePositionManager.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/periphery/IRouterTokenHelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/periphery/IRouterTokenHelper.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/periphery/base_position_manager/IBasePositionManagerEvents.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/periphery/base_position_manager/IBasePositionManagerEvents.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/pool/IPoolActions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/pool/IPoolActions.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/pool/IPoolEvents.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/pool/IPoolEvents.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/pool/IPoolStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/pool/IPoolStorage.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/token/ERC20/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/token/ERC20/IERC20.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/token/ERC721/IERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/token/ERC721/IERC721.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/token/ERC721/extensions/IERC721Enumerable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/token/ERC721/extensions/IERC721Enumerable.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/token/ERC721/extensions/IERC721Metadata.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/token/ERC721/extensions/IERC721Metadata.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/token/ERC721/extensions/IERC721Permit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/token/ERC721/extensions/IERC721Permit.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/interfaces/utils/introspection/IERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/interfaces/utils/introspection/IERC165.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/libraries/FullMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/libraries/FullMath.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/libraries/MathConstants.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/libraries/MathConstants.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/libraries/QtyDeltaMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/libraries/QtyDeltaMath.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/libraries/SafeCast.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/libraries/SafeCast.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap/libraries/TickMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap/libraries/TickMath.sol -------------------------------------------------------------------------------- /src/test/2023-11/KyberSwap_exp.eth.1.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/KyberSwap_exp.eth.1.sol -------------------------------------------------------------------------------- /src/test/2023-11/LinkDao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/LinkDao_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/MEV_0x8c2d_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/MEV_0x8c2d_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/MEV_0xa247_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/MEV_0xa247_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/MahaLend_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/MahaLend_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/MetaLend_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/MetaLend_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/OKC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/OKC_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/OnyxProtocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/OnyxProtocol_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/RBalancer_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/RBalancer_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/Raft_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/Raft_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/ShibaToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/ShibaToken_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/SwampFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/SwampFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/TheNFTV2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/TheNFTV2_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/TheStandard_io_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/TheStandard_io_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/Token8633_9419_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/Token8633_9419_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/TrustPad_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/TrustPad_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/WECO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/WECO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/XAI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/XAI_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/bot_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/bot_exp.sol -------------------------------------------------------------------------------- /src/test/2023-11/grok_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-11/grok_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/BCT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/BCT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/BEARNDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/BEARNDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/Bob_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/Bob_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/CCV_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/CCV_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/ChannelsFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/ChannelsFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/Channels_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/Channels_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/DominoTT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/DominoTT_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/ElephantStatus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/ElephantStatus_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/FloorProtocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/FloorProtocol_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/GoodCompound_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/GoodCompound_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/GoodDollar_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/GoodDollar_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/HNet_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/HNet_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/HYPR_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/HYPR_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/KEST_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/KEST_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/MAMO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/MAMO_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/NFTTrader_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/NFTTrader_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/PHIL_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/PHIL_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/PineProtocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/PineProtocol_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/TIME_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/TIME_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/Telcoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/Telcoin_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/TransitFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/TransitFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/UnverifiedContr_0x431abb_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/UnverifiedContr_0x431abb_exp.sol -------------------------------------------------------------------------------- /src/test/2023-12/bZx_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2023-12/bZx_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/BarleyFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/BarleyFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/Bmizapper_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/Bmizapper_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/CitadelFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/CitadelFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/DAO_SoulMate_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/DAO_SoulMate_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/Freedom_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/Freedom_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/Gamma_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/Gamma_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/LQDX_alert_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/LQDX_alert_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/MIC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/MIC_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/MIMSpell2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/MIMSpell2_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/NBLGAME_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/NBLGAME_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/OrbitChain_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/OrbitChain_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/PeapodsFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/PeapodsFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/RadiantCapital_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/RadiantCapital_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/Shell_MEV_0xa898_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/Shell_MEV_0xa898_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/SocketGateway_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/SocketGateway_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/WiseLending02_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/WiseLending02_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/WiseLending03_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/WiseLending03_exp.sol -------------------------------------------------------------------------------- /src/test/2024-01/XSIJ_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-01/XSIJ_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/ADC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/ADC_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/AffineDeFi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/AffineDeFi_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/Babyloogn_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/Babyloogn_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/BlueberryProtocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/BlueberryProtocol_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/BurnsDefi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/BurnsDefi_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/CompoundUni_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/CompoundUni_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/DN404_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/DN404_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/DeezNutz404_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/DeezNutz404_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/DualPools_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/DualPools_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/EGGX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/EGGX_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/GAIN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/GAIN_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/Game_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/Game_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/MINER_bsc_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/MINER_bsc_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/Miner_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/Miner_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/PANDORA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/PANDORA_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/ParticleTrade_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/ParticleTrade_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/RuggedArt_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/RuggedArt_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/SMOOFSStaking_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/SMOOFSStaking_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/Seneca_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/Seneca_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/SwarmMarkets_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/SwarmMarkets_exp.sol -------------------------------------------------------------------------------- /src/test/2024-02/Zoomer_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-02/Zoomer_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/ALP_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/ALP_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/ARK_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/ARK_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/BBT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/BBT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/Binemon_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/Binemon_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/CGT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/CGT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/ETHFIN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/ETHFIN_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/GHT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/GHT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/IT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/IT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/Juice_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/Juice_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/LavaLending_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/LavaLending_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/MO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/MO_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/Paraswap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/Paraswap_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/Prisma_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/Prisma_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/SSS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/SSS_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/TGBS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/TGBS_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/UnizenIO2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/UnizenIO2_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/UnizenIO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/UnizenIO_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/Woofi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/Woofi_exp.sol -------------------------------------------------------------------------------- /src/test/2024-03/ZongZi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-03/ZongZi_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/ATM_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/ATM_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/BNBX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/BNBX_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/BigBangSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/BigBangSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/ChaingeFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/ChaingeFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/FIL314_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/FIL314_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/GFA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/GFA_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/GROKD_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/GROKD_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/Hackathon_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/Hackathon_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/HedgeyFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/HedgeyFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/HoppyFrogERC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/HoppyFrogERC_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/MARS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/MARS_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/NGFS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/NGFS_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/OpenLeverage2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/OpenLeverage2_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/PikeFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/PikeFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/Rico_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/Rico_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/SATX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/SATX_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/SQUID_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/SQUID_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/SumerMoney_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/SumerMoney_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/UPS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/UPS_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/UnverifiedContr_0x00C409_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/UnverifiedContr_0x00C409_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/WSM_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/WSM_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/XBridge_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/XBridge_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/YIEDL_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/YIEDL_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/Yield_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/Yield_exp.sol -------------------------------------------------------------------------------- /src/test/2024-04/Z123_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-04/Z123_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/Burner_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/Burner_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/EXcommunity_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/EXcommunity_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/GFOX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/GFOX_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/GPU_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/GPU_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/Liquiditytokens_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/Liquiditytokens_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/MetaDragon_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/MetaDragon_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/MixedSwapRouter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/MixedSwapRouter_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/NORMIE_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/NORMIE_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/OSN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/OSN_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/PredyFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/PredyFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/RedKeysCoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/RedKeysCoin_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/SATURN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/SATURN_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/SCROLL_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/SCROLL_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/Sonne_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/Sonne_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/TCH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/TCH_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/TGC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/TGC_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/TSURU_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/TSURU_exp.sol -------------------------------------------------------------------------------- /src/test/2024-05/Tradeonorion_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-05/Tradeonorion_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/APEMAGA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/APEMAGA_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/Bazaar_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/Bazaar_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/Crb2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/Crb2_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/Dyson_money_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/Dyson_money_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/INcufi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/INcufi_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/JokInTheBox_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/JokInTheBox_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/MineSTM_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/MineSTM_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/NCD_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/NCD_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/SteamSwap_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/SteamSwap_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/UwuLend_First_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/UwuLend_First_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/UwuLend_Second_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/UwuLend_Second_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/Velocore_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/Velocore_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/WIFCOIN_ETH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/WIFCOIN_ETH_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/Will_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/Will_exp.sol -------------------------------------------------------------------------------- /src/test/2024-06/YYS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-06/YYS_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/DeFiPlaza_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/DeFiPlaza_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/DoughFina_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/DoughFina_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/GAX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/GAX_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/LW_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/LW_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/Lifiprotocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/Lifiprotocol_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/MEVbot_0xdd7c_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/MEVbot_0xdd7c_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/MRP_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/MRP_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/Minterest_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/Minterest_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/SBT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/SBT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/Spectra_finance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/Spectra_finance_exp.sol -------------------------------------------------------------------------------- /src/test/2024-07/UnverifiedContr_0x452E25_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-07/UnverifiedContr_0x452E25_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/AAVE_Repay_Adapter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/AAVE_Repay_Adapter.sol -------------------------------------------------------------------------------- /src/test/2024-08/COCO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/COCO_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/Convergence_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/Convergence_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/IvestDao_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/IvestDao_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/NovaXM2E_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/NovaXM2E_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/OMPxContract_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/OMPxContract_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/VOW_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/VOW_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/YodlRouter_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/YodlRouter_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/Zenterest_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/Zenterest_exp.sol -------------------------------------------------------------------------------- /src/test/2024-08/unverified_667d_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-08/unverified_667d_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/AIRBTC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/AIRBTC_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/Bankroll_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/Bankroll_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/Bedrock_DeFi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/Bedrock_DeFi_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/Caterpillar_Coin_CUT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/Caterpillar_Coin_CUT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/DOGGO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/DOGGO_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/HANAToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/HANAToken_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/INUMI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/INUMI_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/MARA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/MARA_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/OTSeaStaking_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/OTSeaStaking_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/OnyxDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/OnyxDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/PLN_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/PLN_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/Penpiexyzio_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/Penpiexyzio_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/PestoToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/PestoToken_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/Pythia_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/Pythia_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/Shezmu_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/Shezmu_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/WXETA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/WXETA_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/unverified_03f9_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/unverified_03f9_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/unverified_16d0.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/unverified_16d0.sol -------------------------------------------------------------------------------- /src/test/2024-09/unverified_5697_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/unverified_5697_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/unverified_766a_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/unverified_766a_exp.sol -------------------------------------------------------------------------------- /src/test/2024-09/unverified_a89f_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-09/unverified_a89f_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/AIZPTToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/AIZPTToken_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/BUBAI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/BUBAI_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/CompoundFork_exploit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/CompoundFork_exploit.sol -------------------------------------------------------------------------------- /src/test/2024-10/Erc20transfer_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/Erc20transfer_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/FireToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/FireToken_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/HYDT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/HYDT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/LavaLending_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/LavaLending_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/MorphoBlue_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/MorphoBlue_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/P719Token_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/P719Token_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/SASHAToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/SASHAToken_exp.sol -------------------------------------------------------------------------------- /src/test/2024-10/VISTA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-10/VISTA_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/Ak1111_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/Ak1111_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/ChiSale_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/ChiSale_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/CoW_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/CoW_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/DelatPrimePriceData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/DelatPrimePriceData.txt -------------------------------------------------------------------------------- /src/test/2024-11/DeltaPrime_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/DeltaPrime_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/MFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/MFT_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/MainnetSettler_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/MainnetSettler_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/Matez_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/Matez_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/NFTG_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/NFTG_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/PolterFinance_exploit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/PolterFinance_exploit.sol -------------------------------------------------------------------------------- /src/test/2024-11/RPP_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/RPP_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/VRug_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/VRug_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/X319_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/X319_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/proxy_b7e1_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/proxy_b7e1_exp.sol -------------------------------------------------------------------------------- /src/test/2024-11/vETH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-11/vETH_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/BTC24H_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/BTC24H_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/Bizness_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/Bizness_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/CloberDEX_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/CloberDEX_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/JHY_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/JHY_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/LABUBU_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/LABUBU_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/Moonhacker_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/Moonhacker_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/Pledge_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/Pledge_exp.sol -------------------------------------------------------------------------------- /src/test/2024-12/SlurpyCoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2024-12/SlurpyCoin_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/98Token_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/98Token_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/Ast_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/Ast_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/HORS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/HORS_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/IPC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/IPC_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/IdolsNFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/IdolsNFT_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/JPulsepot_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/JPulsepot_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/LAURAToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/LAURAToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/LPMine_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/LPMine_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/Mosca2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/Mosca2_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/Mosca_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/Mosca_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/ODOS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/ODOS_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/Paribus_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/Paribus_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/RoulettePotV2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/RoulettePotV2_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/Unilend_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/Unilend_exp.sol -------------------------------------------------------------------------------- /src/test/2025-01/sorraStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-01/sorraStaking.sol -------------------------------------------------------------------------------- /src/test/2025-02/Bybit_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/Bybit_exp.sol -------------------------------------------------------------------------------- /src/test/2025-02/FourMeme_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/FourMeme_exp.sol -------------------------------------------------------------------------------- /src/test/2025-02/HegicOptions_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/HegicOptions_exp.sol -------------------------------------------------------------------------------- /src/test/2025-02/PeapodsFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/PeapodsFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2025-02/StepHeroNFTs_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/StepHeroNFTs_exp.sol -------------------------------------------------------------------------------- /src/test/2025-02/unverified_35bc_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/unverified_35bc_exp.sol -------------------------------------------------------------------------------- /src/test/2025-02/unverified_d4f1_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-02/unverified_d4f1_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/Alkimiya_io_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/Alkimiya_io_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/BBXToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/BBXToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/DCFToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/DCFToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/DUCKVADER_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/DUCKVADER_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/H2O_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/H2O_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/LeverageSIR_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/LeverageSIR_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/OneInchFusionV1SettlementHack.sol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/OneInchFusionV1SettlementHack.sol_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/Pump_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/Pump_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/SBRToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/SBRToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/UNI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/UNI_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/YziAIToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/YziAIToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-03/wKeyDAO_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-03/wKeyDAO_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/AIRWA_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/AIRWA_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/BTNFT_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/BTNFT_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/ImpermaxV3_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/ImpermaxV3_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/Laundromat_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/Laundromat_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/Lifeprotocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/Lifeprotocol_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/Roar_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/Roar_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/Unverified_6077_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/Unverified_6077_exp.sol -------------------------------------------------------------------------------- /src/test/2025-04/YBToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-04/YBToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/Corkprotocol_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/Corkprotocol_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/IRYSAI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/IRYSAI_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/KRCToken_pair_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/KRCToken_pair_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/MBUToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/MBUToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/Nalakuvara_LotteryTicket50_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/Nalakuvara_LotteryTicket50_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/RICE_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/RICE_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/Unwarp_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/Unwarp_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/UsualMoney_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/UsualMoney_exp.sol -------------------------------------------------------------------------------- /src/test/2025-05/YDTtoken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-05/YDTtoken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/AAVEBoost_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/AAVEBoost_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/BankrollNetwork_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/BankrollNetwork_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/BankrollStack_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/BankrollStack_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/Gangsterfinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/Gangsterfinance_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/GradientMakerPool_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/GradientMakerPool_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/MetaPool_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/MetaPool_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/ResupplyFi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/ResupplyFi_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/Stead_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/Stead_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/unverified_8490_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/unverified_8490_exp.sol -------------------------------------------------------------------------------- /src/test/2025-06/unverified_b5cb_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-06/unverified_b5cb_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/FPC_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/FPC_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/MulticallWithETH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/MulticallWithETH_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/RANTToken_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/RANTToken_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/SWAPPStaking_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/SWAPPStaking_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/Stepp2p_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/Stepp2p_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/SuperRare_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/SuperRare_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/VDS_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/VDS_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/WETC_Token_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/WETC_Token_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/gmx_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/gmx_exp.sol -------------------------------------------------------------------------------- /src/test/2025-07/unverified_54cd_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-07/unverified_54cd_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/0x8d2e_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/0x8d2e_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/0xf340_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/0xf340_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/ABCCApp_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/ABCCApp_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/Bebop_dex_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/Bebop_dex_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/EverValueCoin_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/EverValueCoin_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/Grizzifi_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/Grizzifi_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/Hexotic_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/Hexotic_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/MulticallWithXera_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/MulticallWithXera_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/PDZ_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/PDZ_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/SizeCredit_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/SizeCredit_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/WXC_Token_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/WXC_Token_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/YuliAI_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/YuliAI_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/coinbase_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/coinbase_exp.sol -------------------------------------------------------------------------------- /src/test/2025-08/d3xai_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-08/d3xai_exp.sol -------------------------------------------------------------------------------- /src/test/2025-09/Kame_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-09/Kame_exp.sol -------------------------------------------------------------------------------- /src/test/2025-10/MIMSpell3_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-10/MIMSpell3_exp.sol -------------------------------------------------------------------------------- /src/test/2025-10/SharwaFinance_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-10/SharwaFinance_exp.sol -------------------------------------------------------------------------------- /src/test/2025-10/TokenHolder_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-10/TokenHolder_exp.sol -------------------------------------------------------------------------------- /src/test/2025-11/BalancerV2_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-11/BalancerV2_exp.sol -------------------------------------------------------------------------------- /src/test/2025-11/DRLVaultV3_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-11/DRLVaultV3_exp.sol -------------------------------------------------------------------------------- /src/test/2025-11/Moonwell_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-11/Moonwell_exp.sol -------------------------------------------------------------------------------- /src/test/2025-12/yETH_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/2025-12/yETH_exp.sol -------------------------------------------------------------------------------- /src/test/IUNMI_db27_exp.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/IUNMI_db27_exp.sol -------------------------------------------------------------------------------- /src/test/StableMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/StableMath.sol -------------------------------------------------------------------------------- /src/test/basetest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/basetest.sol -------------------------------------------------------------------------------- /src/test/interface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/interface.sol -------------------------------------------------------------------------------- /src/test/tokenhelper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/src/test/tokenhelper.sol -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunWeb3Sec/DeFiHackLabs/HEAD/test.py --------------------------------------------------------------------------------