Open Sources/ETC13 Locust Sample Code locustfile.pyfrom locust import HttpLocust, TaskSet def login(l): l.client.post("/goodnight/api/v3/users/signin/normal", {"email":"joe.cho@email.com", "pw":"password", "social_id":0}) def profile(l): l.client.get("/goodnight/api/v3/users/profile") class UserBehavior(TaskSet): tasks = {profile: 1} def on_start(self): login(self) class WebsiteUser(HttpLocust): task_set = UserBehavior min_wait = 50.. 2018. 11. 27. PhantomJS(팬텀JS) PhantomJS is a headless web browser scriptable with JavaScript. It runs on Windows, macOS, Linux, and FreeBSD.Using QtWebKit as the back-end, it offers fast and native support for various web standards: DOM handling, CSS selector, JSON, Canvas, and SVG.The following simple script for PhantomJS loads Google homepage, waits a bit, and then captures it to an image.var page = require('webpage').crea.. 2018. 11. 26. locust 관련 정보 http://docs.locust.io/http://httpbin.org/ 2017. 8. 25. Kali Linux (칼리 리눅스) Downloadhttps://www.kali.org/downloads/DefinitionKali Linux is a Debian-based Linux distribution aimed at advanced Penetration Testing and Security Auditing. Kali contains several hundred tools aimed at various information security tasks, such as Penetration Testing, Forensics and Reverse Engineering. Kali Linux is developed, funded and maintained by Offensive Security, a leading information sec.. 2016. 10. 11. 이전 1 2 3 4 다음