Best Python code snippet using autotest_python
file_access_tracker.py
Source: file_access_tracker.py
...343filename = sys.argv[2].lower()344trackbuffer = False345if len(sys.argv) == 4:346 trackbuffer = int(sys.argv[3])347dbg = pydbg()348dbg.filters = filters349dbg.library = library350dbg.handles = handles351dbg.buffers = buffers352dbg.hooks = ""353dbg.procname = procname354dbg.filename = filename355dbg.loop_limit = loop_limit356dbg.trackbuffer = trackbuffer357dbg.set_callback(EXCEPTION_BREAKPOINT, handler_breakpoint)358if not attach_target_proc(dbg, procname, filename):359 print "[!] Couldnt load/attach to %s" % procname360 361 sys.exit(-1)...
main.py
Source: main.py
...105 #log.i("Single step...", dbg)106 return DBG_CONTINUE107108109def load_dbg():110 dbg = pydbg()111 112 dbg.set_callback(CREATE_PROCESS_DEBUG_EVENT, handler_create_process)113 dbg.set_callback(CREATE_THREAD_DEBUG_EVENT, handler_create_thread)114 dbg.set_callback(EXIT_PROCESS_DEBUG_EVENT, handler_exit_process)115 dbg.set_callback(EXIT_THREAD_DEBUG_EVENT, handler_exit_thread)116 dbg.set_callback(LOAD_DLL_DEBUG_EVENT, handler_load_dll)117 dbg.set_callback(UNLOAD_DLL_DEBUG_EVENT, handler_unload_dll)118 dbg.set_callback(OUTPUT_DEBUG_STRING_EVENT, handler_output_debug_string)119 dbg.set_callback(RIP_EVENT, handler_rip)120121 dbg.set_callback(EXCEPTION_BREAKPOINT, handler_breakpoint) 122 dbg.set_callback(EXCEPTION_ACCESS_VIOLATION, handler_access_violation)123 dbg.set_callback(EXCEPTION_GUARD_PAGE, handler_guard_page)124 dbg.set_callback(EXCEPTION_SINGLE_STEP, handler_single_step)125126127 dbg.load(config.EXE_PATH, command_line = config.EXE_CMD, create_new_console=True)128129 #dbg.load(r"E:\work\psiphon_new\psiphon3_unpacked.exe", create_new_console=True)130 #dbg.load(r"E:\work\DNS\DNS.exe", create_new_console=True)131 #dbg.load(r"E:\work\psiphon\psiphon3_old_unpacked.exe", create_new_console=True)132 #dbg.load(r"E:\work\psiphon\psiphon3_old.exe", create_new_console=True)133 #dbg.load(r"E:\work\ut\uTorrent.exe", create_new_console=True) 134 #dbg.load(r"C:\Moon\other\ftp_server.exe", create_new_console=True)135 #dbg.load(r'C:\DOCUME~1\moon\LOCALS~1\Temp\psiphon-tunnel-core.exe',r' --config "C:\Documents and Settings\moon\Application Data\Psiphon3\psiphon.config" --serverList "C:\Documents and Settings\moon\Application Data\Psiphon3\server_list.dat"',create_new_console=True)136137 #dbg.load(r"C:\Program Files\Google\Chrome\Application\chrome.exe", create_new_console=True)138 #dbg.load(r"C:\Program Files\Astrill\astrill.exe", create_new_console=True)139 #dbg.load(r"C:\Moon\workspace\test_con_win32\Debug\test_con_win32.exe", create_new_console=True) 140 dbg.run()141 142143def main():144 log.log_init()145 data_man.init()146 load_dbg() 147 #info_man.dump()148 #info_man.load()149 #info_man.gen_report()150 #info_man.open_report()151152 print "-------END---------"153154155if __name__ == '__main__':
...
DBG.py
Source: DBG.py
1from tempvalue import*2def apply(DBG):3 # -------------------------------------------------------------------------4 # DBGMCU_IDCODE (IDCODE)5 # Offset: 0 Size: 32 Access: ReadMode6 # -------------------------------------------------------------------------7 DBG['DBGMCU_IDCODE']['REV_ID'].values = None8 DBG['DBGMCU_IDCODE']['DEV_ID'].values = None9 # -------------------------------------------------------------------------10 # DBGMCU_CR (Control Register)11 # Offset: 4 Size: 32 Access: ReadWriteMode12 # -------------------------------------------------------------------------13 DBG['DBGMCU_CR']['TRACE_MODE'].values = None14 DBG['DBGMCU_CR']['TRACE_IOEN'].values = None15 DBG['DBGMCU_CR']['DBG_STANDBY'].values = None16 DBG['DBGMCU_CR']['DBG_STOP'].values = None17 DBG['DBGMCU_CR']['DBG_SLEEP'].values = None18 # -------------------------------------------------------------------------19 # DBGMCU_APB1_FZ (Debug MCU APB1 Freeze registe)20 # Offset: 8 Size: 32 Access: ReadWriteMode21 # -------------------------------------------------------------------------22 DBG['DBGMCU_APB1_FZ']['DBG_CAN2_STOP'].values = None23 DBG['DBGMCU_APB1_FZ']['DBG_CAN1_STOP'].values = None24 DBG['DBGMCU_APB1_FZ']['DBG_I2CFMP_SMBUS_TIMEOUT'].values = None25 DBG['DBGMCU_APB1_FZ']['DBG_J2C3SMBUS_TIMEOUT'].values = None26 DBG['DBGMCU_APB1_FZ']['DBG_J2C2_SMBUS_TIMEOUT'].values = None27 DBG['DBGMCU_APB1_FZ']['DBG_J2C1_SMBUS_TIMEOUT'].values = None28 DBG['DBGMCU_APB1_FZ']['DBG_IWDEG_STOP'].values = None29 DBG['DBGMCU_APB1_FZ']['DBG_WWDG_STOP'].values = None30 DBG['DBGMCU_APB1_FZ']['DBG_RTC_STOP'].values = None31 DBG['DBGMCU_APB1_FZ']['DBG_TIM14_STOP'].values = None32 DBG['DBGMCU_APB1_FZ']['DBG_TIM13_STOP'].values = None33 DBG['DBGMCU_APB1_FZ']['DBG_TIM12_STOP'].values = None34 DBG['DBGMCU_APB1_FZ']['DBG_TIM7_STOP'].values = None35 DBG['DBGMCU_APB1_FZ']['DBG_TIM6_STOP'].values = None36 DBG['DBGMCU_APB1_FZ']['DBG_TIM5_STOP'].values = None37 DBG['DBGMCU_APB1_FZ']['DBG_TIM4_STOP'].values = None38 DBG['DBGMCU_APB1_FZ']['DBG_TIM3_STOP'].values = None39 DBG['DBGMCU_APB1_FZ']['DBG_TIM2_STOP'].values = None40 # -------------------------------------------------------------------------41 # DBGMCU_APB2_FZ (Debug MCU APB2 Freeze registe)42 # Offset: 12 Size: 32 Access: ReadWriteMode43 # -------------------------------------------------------------------------44 DBG['DBGMCU_APB2_FZ']['DBG_TIM11_STOP'].values = None45 DBG['DBGMCU_APB2_FZ']['DBG_TIM10_STOP'].values = None46 DBG['DBGMCU_APB2_FZ']['DBG_TIM9_STOP'].values = None47 DBG['DBGMCU_APB2_FZ']['DBG_TIM8_STOP'].values = None...
Check out the latest blogs from LambdaTest on this topic:
Before we discuss Scala testing, let us understand the fundamentals of Scala and how this programming language is a preferred choice for your development requirements.The popularity and usage of Scala are rapidly rising, evident by the ever-increasing open positions for Scala developers.
So, now that the first installment of this two fold article has been published (hence you might have an idea of what Agile Testing is not in my opinion), I’ve started feeling the pressure to explain what Agile Testing actually means to me.
Did you know that according to Statista, the number of smartphone users will reach 18.22 billion by 2025? Let’s face it, digital transformation is skyrocketing and will continue to do so. This swamps the mobile app development market with various options and gives rise to the need for the best mobile app testing tools
As a developer, checking the cross browser compatibility of your CSS properties is of utmost importance when building your website. I have often found myself excited to use a CSS feature only to discover that it’s still not supported on all browsers. Even if it is supported, the feature might be experimental and not work consistently across all browsers. Ask any front-end developer about using a CSS feature whose support is still in the experimental phase in most prominent web browsers. ????
The count of mobile users is on a steep rise. According to the research, by 2025, it is expected to reach 7.49 billion users worldwide. 70% of all US digital media time comes from mobile apps, and to your surprise, the average smartphone owner uses ten apps per day and 30 apps each month.
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!