Şüphe duyduğunuz uygulamaları izole ederek çalıştırmanıza olanak sağlayan bir uygulamala.
https://sandboxie.com/
Sayfalar
▼
Monday, January 30, 2017
Friday, January 20, 2017
Python SimpleHTTPServer ile dizin servisi
Bulunduğunuz dizini spesifik bir porta atayacağınız SimpleHTTPServer ile hızlıca servis edebilirsiniz. Özellikle hızlıca ağ içi dosya transferi için kullanışlı.
$ python -m SimpleHTTPServer 8090
$ python -m SimpleHTTPServer 8090
Tuesday, January 17, 2017
bugcrowd
bugcrowd.com
Utilize the collective creativity of tens of thousands of hackers to test your applications
https://bugcrowd.com/how-it-works
Utilize the collective creativity of tens of thousands of hackers to test your applications
https://bugcrowd.com/how-it-works
Saturday, January 7, 2017
Grant DBA rights to specific user
$ sqlplus
SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 7 13:52:22 2017
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> grant dba to availabilityuser with admin option;
Grant succeeded.
SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 7 13:52:22 2017
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Enter user-name: sys as sysdba
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> grant dba to availabilityuser with admin option;
Grant succeeded.