
zeroscience.mk
Zero Science LabMacedonian information security research and development laboratory
http://www.zeroscience.mk/
Macedonian information security research and development laboratory
http://www.zeroscience.mk/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
0.9 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
16
SSL
EXTERNAL LINKS
30
SITE IP
159.253.157.70
LOAD TIME
0.891 sec
SCORE
6.2
Zero Science Lab | zeroscience.mk Reviews
https://zeroscience.mk
Macedonian information security research and development laboratory
Zero Science Lab » Netlux Antivirus 1.0.1.8 Session Manager Service Privilege Escalation
http://www.zeroscience.mk//en/vulnerabilities/ZSL-2015-5245.php
Netlux Antivirus 1.0.1.8 Session Manager Service Privilege Escalation. Title: Netlux Antivirus 1.0.1.8 Session Manager Service Privilege Escalation. Release Date: 06.06.2015. Netlux Antivirus is an award-winning product that provides comprehensive protection against all types of viruses,trojans,malwares and spywares, secures your data, protects your privacy and ensures your PC remains virus-free. Netlux Systems Private Limited. - http:/ www.netluxantivirus.com. 1018 and 1.0.1.4.
Zero Science Lab » Acoustica Pianissimo 1.0 Build 12 (Registration ID) Buffer Overflow PoC
http://www.zeroscience.mk//en/vulnerabilities/ZSL-2015-5243.php
Acoustica Pianissimo 1.0 Build 12 (Registration ID) Buffer Overflow PoC. Title: Acoustica Pianissimo 1.0 Build 12 (Registration ID) Buffer Overflow PoC. Impact: System Access, DoS. Release Date: 24.05.2015. B981790): Access violation - code c0000005 (first chance). First chance exceptions are reported before any exception handling. This exception may be expected and handled. Eax=00000000 ebx=532d0245 ecx=bdeec3ea edx=00000049 esi=4a18d43c edi=06c07739. 061fbda7 8b86dc200000 mov eax,dword ptr [esi 20DCh] ...
Zero Science Lab » Microweber v1.0.3 File Upload Filter Bypass Remote PHP Code Execution
http://www.zeroscience.mk//en/vulnerabilities/ZSL-2015-5250.php
Microweber v1.0.3 File Upload Filter Bypass Remote PHP Code Execution. Title: Microweber v1.0.3 File Upload Filter Bypass Remote PHP Code Execution. Release Date: 04.08.2015. Microweber is an open source drag and drop PHP/Laravel CMS licensed under Apache License, Version 2.0 which allows you to create your own website, blog or online shop. Microweber Team - http:/ www.microweber.com. Apache 2.4.10 (Win32). MySQL 5.6.21. 12072015] Initial contact with the vendor. 13072015] Sent details to the vendor.
Zero Science Lab » IBM Cognos Business Intelligence Developer 10.2.1 (backURL) Open Redirect
http://www.zeroscience.mk//en/vulnerabilities/ZSL-2015-5244.php
IBM Cognos Business Intelligence Developer 10.2.1 (backURL) Open Redirect. Title: IBM Cognos Business Intelligence Developer 10.2.1 (backURL) Open Redirect. Release Date: 24.05.2015. IBM Cognos Business Intelligence is a web-based, integrated business intelligence suite by IBM. It provides a toolset for reporting, analysis, scorecarding, and monitoring of events and metrics. The software consists of several components to meet the different information requirements in a company. 15052015] Asked vendor to ...
Zero Science Lab » Microweber v1.0.3 Stored XSS And CSRF Add Admin Exploit
http://www.zeroscience.mk//en/vulnerabilities/ZSL-2015-5249.php
Microweber v1.0.3 Stored XSS And CSRF Add Admin Exploit. Title: Microweber v1.0.3 Stored XSS And CSRF Add Admin Exploit. Release Date: 04.08.2015. Microweber is an open source drag and drop PHP/Laravel CMS licensed under Apache License, Version 2.0 which allows you to create your own website, blog or online shop. Microweber Team - http:/ www.microweber.com. Apache 2.4.10 (Win32). MySQL 5.6.21. 12072015] Initial contact with the vendor. 13072015] Vendor responds asking more details.
TOTAL PAGES IN THIS WEBSITE
16
0patch Blog: New Release: 0patch Agent 2016.06.14.850
https://0patch.blogspot.com/2016/06/new-release-0patch-agent-20160614850.html
Welcome to the era of vulnerability micropatching. Monday, June 20, 2016. New Release: 0patch Agent 2016.06.14.850. We released a new build of 0patch Agent for Windows today. There are two reasons for this: we'd like to test the updating mechanism with our beta users; and we have fixed a couple of issues reported by our beta users, plus a few minor issues we had on our own hit list. The two issues reported by our beta users were:. Of Zero Science Lab. Root, which would effectively make this a non-issue&#...
Password cracker | Ownagezone
https://ownagezone.wordpress.com/password-cracker
MD5 or SHA-1 hash….send me via a comment and i’ll try to crack them…. One response to “Password cracker”. August 13, 2010 at 9:14 pm. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). You are commenting using your WordPress.com account. ( Log Out. You are commenting using your Twitter account. ( Log Out. You are commenting using your Facebook account. ( Log Out. Notify me of new comments via email. Follow Blog via Email.
Ownagezone
https://ownagezone.wordpress.com/2013/03/05/529
March 5, 2013. Make two bat files with the following names:. MKDIR %windir% System32 sys net. COPY WinDump.exe C: Windows System32 sys net. START "Start" /Min as.vbs. TASKKILL /IM WinDump.exe. COPY C: Windows System32 sys net ass.pcap %CD% ass.pcap. DEL C: Windows System32 sys net ass.pcap. And the as.vbs file:. Set objShell = CreateObject("WScript.Shell"). ObjShell.run("C: Windows System32 sys net WinDump.exe -w C: Windows System32 sys net ass.pcap"). This is if you want the program to run in background.
Quick-sort “median-of-three” – Python implementation | Ownagezone
https://ownagezone.wordpress.com/2013/03/04/quick-sort-median-of-three-python-implementation
March 4, 2013. Quick-sort “median-of-three” – Python implementation. Def swap(array,a,b):. Array[a],array[b] = array[b],array[a]. Def partition(array,start,end):. Median = (end – 1 – start) / 2. Median = median start. Left = start 1. If (array[median] – array[end-1])*(array[start]-array[median]) = 0:. Elif (array[end – 1] – array[median]) * (array[start] – array[end – 1]) =0:. Swap(array,start,end – 1). For right in range(start,end):. Left = left 1. Def quickSortHelper(array,start,end):. Next post ».
badc0re | Ownagezone
https://ownagezone.wordpress.com/author/ci0n0d
Archive by Author badc0re. August 11, 2013. N-gram – Python implementation. More info: http:/ en.wikipedia.org/wiki/N-gram. Def n gram(string, size = 1):. 8220;””. String[i:] for i in range(size)]. Generates: ‘hi there’,’i there’, ‘ there’. Zip(*’hi there’,’i there’, ‘ there’). Generates:[(‘h’, ‘i’, ‘ ‘), (‘i’, ‘ ‘, ‘t’),. 8216; ‘, ‘t’, ‘h’), (‘t’, ‘h’, ‘e’),. 8216;h’, ‘e’, ‘r’), (‘e’, ‘r’, ‘e’)]. 8220;””. Ngram = zip(*[string[i:] for i in range(size)]). Return [”.join(i) for i in ngram]. August 8, 2013.
Exploits | Ownagezone
https://ownagezone.wordpress.com/exploits
Spider Player 2.5.3 Integer Overflow PoC. Visual C 2008 Express Edition (schannel.dll) DLL Hijacking Exploit. ElecardDVDPlayer Local Buffer Overflow(SEH) PoC. AutoPlay 1.33 Buffer Overflow(SEH) Autoplay script .ini file. Rdestkop 1.6.0 Memory Corruption (Copy from clipboard) PoC. Hanso Converter v1.1.0 Buffer Overflow DoS (Language File .xml). Hanso Player 1.4.0.0 Buffer Overflow DoS Skinfile default.ini. Leave a Reply Cancel reply. Enter your comment here. Address never made public). August 11, 2013.
Ownagezone | Computer Security | Page 2
https://ownagezone.wordpress.com/page/2
March 1, 2013. Binary search – Python implementation. If len(array) = 0: return False. Mid = len(array)/ 2. If array[mid] = item:. Return binarySearch(array[mid 1:],item). Testlist = [0, 1, 2, 8, 13, 17, 19, 32, 42,]. February 28, 2013. Students out of college seeking for a job – Meme. February 28, 2013. Dose of inspiration – part 2. February 27, 2013. February 27, 2013. Dijkstra’s shortest path algorithm. February 27, 2013. Heap – Python implementation. Insert – key. Def insert(self, key):. If i / 2 0:.
Hidden sniffing using WinDump | Ownagezone
https://ownagezone.wordpress.com/2012/01/23/sniffing-scene-v-0-1
January 23, 2012. Hidden sniffing using WinDump. Make two bat files with the following names:. MKDIR %windir% System32 sys net. COPY WinDump.exe C: Windows System32 sys net. START "Start" /Min as.vbs. TASKKILL /IM WinDump.exe. COPY C: Windows System32 sys net ass.pcap %CD% ass.pcap. DEL C: Windows System32 sys net ass.pcap. And the as.vbs file:. Set objShell = CreateObject("WScript.Shell"). ObjShell.run("C: Windows System32 sys net WinDump.exe -w C: Windows System32 sys net ass.pcap"), 0. August 11, 2013.
Finding “median-of-three” with two comparisons – Python implementation | Ownagezone
https://ownagezone.wordpress.com/2013/03/04/finding-median-of-three-with-two-comparisons-python-implementation
March 4, 2013. Finding “median-of-three” with two comparisons – Python implementation. Def find median(a,b,c):. If (a – b)*(c-a) = 0:. B – A)*(C-B) =0. Elif (b – a) * (c – b) =0:. Print find(a,b,c). Print find(a,b,c). Laquo; Previous post. Next post ». Quick-sort “median-of-three” – Python implementation Ownagezone. March 4, 2013. Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). Notify me of new comments via email.
Stack v2.0 – Python implementation | Ownagezone
https://ownagezone.wordpress.com/2013/03/04/stack-v2-0-python-implementation
March 4, 2013. Stack v2.0 – Python implementation. Since the version in the previous post sucks i have posted a new version of stack implementation. Note: Use built in version for max performances. Return self.items.pop(). Return self.items = []. Return self.items[len(self.items) – 1]. Laquo; Previous post. Next post ». Leave a Reply Cancel reply. Enter your comment here. Fill in your details below or click an icon to log in:. Address never made public). Notify me of new comments via email. August 8, 2013.
TOTAL LINKS TO THIS WEBSITE
30
Price Request - BuyDomains
Url=' escape(document.location.href) , 'Chat367233609785093432', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=500');return false;". Need a price instantly? Just give us a call. Toll Free in the U.S. We can give you the price over the phone, help you with the purchase process, and answer any questions. Get a price in less than 24 hours. Fill out the form below. One of our domain experts will have a price to you within 24 business hours. United States of America.
zeroschem
Welcome to Our Company. ZEROSCHEM.CO.LTD founded in 2009 and headquartered in Beijing China. We dedicated to the research and development of new chemicals, there are already more than 1000 kinds of products, we also sell technologies of products synthesis. Search by name or CAS:. 2010 @ ZEROSCHEM.CO.,LTD. Address: 5th Floor,NO.2,Tianhua Street,Tiangongyuan Town,Daxing District,Beijing. Phone: 86 10 61256048 13810278579 Fax: 86 10 61256049. Supported: www.hxchem.net.
ZeroSchiffer (Fearlesswolves bff) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')" class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ; this.removeAttribute('onclick')". Join DeviantArt for FREE. Forgot Password or Username? Deviant for 5 Years. This deviant's full pageview. Last Visit: 77 weeks ago. This is the place where you can personalize your profile! Just whe...
zeroschiuma ~ BOOM!
Non sei nel posto giusto! August 24th, 2010. Diceva un sacco di cazzate, ma le diceva benissimo. I write p0rn. Bitches love p0rn. You can describe me more as a tiny 9/11. Casalinga, delinquente, fangirl. ♥. Pubblica le sue fanfiction. Archivia le sue fanfiction. Anche quelle che non sono sullEFP. Aggiorna la comunità circa le sue faccende fanfictionarie. Racconta le sue prodezze quotidiane. Mette femminucce nude ed altre cosette randomiche. Pianifica le sue prodezze quotidiane e non. Tiene i suoi libri.
ZeroScience.com is for Sale! @ DomainMarket.com
Search Premium Domain Names. What's in a Domain Name? Building your online presence starts with a top quality domain name from DomainMarket.com. At DomainMarket.com you'll find thousands of the very best .Com domain names waiting to be developed into first rate brands. We have been in business over 10 years and have sold more of our premium domains than any competitors. At DomainMarket.com we offer simple, safe and secure transactions for premium domain names. Your branding efforts will be much m...A pre...
Zero Science Lab
Information security research and development laboratory. Microweber v1.0.3 File Upload Filter Bypass Code Execution. Microweber v1.0.3 Stored XSS And CSRF Add Admin Exploit. ArticleFR 3.0.6 CSRF Add Admin Exploit. ArticleFR 3.0.6 Multiple Script Injection Vulnerabilities. Cisco AnyConnect Secure Mobility Client Command Execution. Netlux Antivirus 1.0.1.8 Session Manager Service EoP. IBM Cognos BI Developer 10.2.1 (backURL) Open Redirect. Acoustica Pianissimo 1.0 Build 12 (Registration ID) BoF PoC. The w...
鍼治療の効果について
ZERO E Cigarette |! ZERO Electronic Cigarettes | Best E Cigs
ZERO Premium Electronic Cigarettes | ZERO E Cigs
Zeros Club Bar and Nightclub - Laganas, Zante (Zakynthos), Greece
Friday – Foam Party. Sunday – Total Karnage. Zeros Club 90′s Photos. About Zeros Club, Laganas, Zante. If you have heard of Zante, than I would expect that you would have heard of Zeros Club. We aim to please and I guarantee you will not be disappointed… if your planning your trip to the most upcoming summer resort in the world, then Zeros Club. Will certainly be your no.1 destination. So welcome to the Zeros Club. Zantes No1 Bar - Biggest and Busiest CLUB - Best Team. We offer the all round best holiday...
陆友物流(北京)有限公司-首页-陆友物流|汽车物流|轿车托运|整车物流|汽车运输- Powered By SiteEngine
地址:北京市朝阳区红军营南路15号瑞普大厦C座601室 邮编:100012 电话:010-64828300 传真:010-64828378.
SOCIAL ENGAGEMENT