- SHARK JACK $59.99, url: https://shop.hak5.org/products/shark-jack?variant=21284894670961
- USB RUBBER DUCKY $49.99, url: https://shop.hak5.org/products/usb-rubber-ducky-deluxe
- PLUNDER BUG $49.99, url: https://shop.hak5.org/products/bug
- LAN TURTLE $59.99, https://shop.hak5.org/products/lan-turtle
- WIFI PINEAPPLE BASIC $99.99, url: https://shop.hak5.org/products/wifi-pineapple?variant=81044992
- PACKET SQUIRREL $59.99, url: https://shop.hak5.org/products/packet-squirrel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'net/ldap' | |
def get_ldap_response(ldap) | |
msg = "Response Code: #{ ldap.get_operation_result.code }, Message: #{ ldap.get_operation_result.message }" | |
raise msg unless ldap.get_operation_result.code == 0 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
log 127.0.0.1 local0 | |
log 127.0.0.1 local1 notice | |
maxconn 4096 | |
user haproxy | |
group haproxy | |
daemon | |
defaults | |
log global |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global | |
log 127.0.0.1 local2 | |
chroot /var/lib/haproxy | |
pidfile /var/run/haproxy.pid | |
maxconn 4000 | |
user haproxy | |
group haproxy | |
daemon |
Üniversitemiz bünyesinde fakültelerin, bölümlerin, proje/etkinliklerin tanıtımı gibi benzer amaçlarla yayınlanan web sayfaları bulunmaktadır. Mevcut sistemde birden fazla altyapı olup hepsinin bir çok eksikliği bulunmaktadır. Üniversitenin bu önemli ihtiyacını karşılamak ve web sayfası standartlarını oluşturmak için bu proje oluşturulmuştur.
İçerik yönetim sistemi, çağın standartlarına uygun ekrana duyarlı tasarım, çoklu dil desteği, merkezi yönetim, web servisleri ile çalışabilen gelişmiş bir sistem olarak planlanmaktadır.
Kurs süresince işlenilen tüm komutlar uygulama yapmak amacıyla sanal makinede çalışan bir Linux dağıtımı üzerinde çalıştırılması planlanmaktadır.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mysqld] | |
sql_mode=ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION | |
ERROR 1292 (22007) at line 752: Incorrect datetime value: '0000-00-00 00:00:00' for column 'created' at row 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i=0 | |
while(i<10): | |
if (i < 5) and not(i % 2): | |
print(i) | |
elif not(i % 3): | |
print(i * i) | |
i+=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo $_GET["name"]; | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta charset="UTF-8"> | |
<?php | |
$url="http://kutuphane3.omu.edu.tr/nisan2016.htm"; | |
$cek = file_get_contents($url); | |
preg_match('#<table border="0" cellpadding="0" cellspacing="0" width="100%">(.*?)</table>#s',$cek,$table); | |
//print_r($table[0]); | |
preg_match_all('#g">(.*?)</a>#s',$table[0],$baslik); | |
preg_match_all('#<a href="(.*?)">#s',$table[0],$resim); | |
preg_match_all('#<i>(.*?)</i>#s',$table[0],$kaynak); |
NewerOlder