<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>sadeceben</title>
    <description></description>
    <link>https://sadeceben.github.iohttps://sadeceben.github.io//</link>
    <atom:link href="https://sadeceben.github.iohttps://sadeceben.github.io//feed.xml" rel="self" type="application/rss+xml" />
    <pubDate>Sat, 27 May 2023 09:54:31 +0000</pubDate>
    <lastBuildDate>Sat, 27 May 2023 09:54:31 +0000</lastBuildDate>
    <generator>Jekyll v3.9.3</generator>
    
      <item>
        <title>AFK Defender</title>
        <description>&lt;p&gt;Öncelikle selam dostlar.
Uzun zamandır blog yazmadığımı ve bir çok hobimden
uzaklaştığımı farkettim.
Ve dahası bunu evde yatmam gereken bir dönemde anladım.&lt;/p&gt;

&lt;p&gt;Çok fazla gevezelik etmeden, gelelim konumuza.
Bu yazımda sizlere günlük 
hayatımda beni rahatsız eden bir durumdan bahsedeceğim.
AFK (Away From Keyboard) kalma durumu. 
Öncelikle nedir 
&lt;a href=&quot;https://en.wikipedia.org/wiki/Glossary_of_video_game_terms#AFK&quot;&gt;AFK&lt;/a&gt; gelin ilk önce onu açıklayalım.
AFK(Away from keyboard), &lt;a href=&quot;http://www.textfiles.com/fidonet-on-the-internet/878889/fido0619.txt&quot;&gt;kadim yazıtlarda&lt;/a&gt; 
anlatılanlara göre 
1990 yılında bir haber sitesi ile  beraber
internet kültürüne dahil oldu.
AFK, “klavyeden uzakta” anlamına gelen bir kısaltmadır. 
Ne zaman AFK durumunda olacağımız ise uygulamadan uygulamaya fark göstermektedir.
Günümüz chat uygulamaları ve oyunlarında AFK, 
klavye ve mouse hareketlerinin 
belli bir süre kullanılmaması durumunda tetiklenmektedir.
Kısaca, geçici bir süre 
bilgisayardan uzakta kalma durumu olarak özetlenebilir.&lt;/p&gt;

&lt;p&gt;Lakin bu durum beni oldukça rahatsız ediyor :D
5 - 10 dakikalığına pc başından kalkıyorum 
ve geri geldiğimde kendimi, 
bilgisayarım ya uyku modunda ya da 
oyun oynuyorsam afk engeline takılmış olarak buluyorum. 
Bende bu durum ile ilgili ufak bir script yazma ihtiyacı duydum.
Ve bu script, ekstra olarak rust ile olacaktı :D&lt;/p&gt;

&lt;p&gt;Öncelikle ufak bi araştırma yapma ihtiyacı duydum.
Bunun sebebi, windows bir sistem yerine 
GNU/Linux bir sistem kullanıyordum.
GNU/Linux yaygın olarak xorg desteğini sunduğu 
için ona uygun bir kütüphane
var mı diye kontrol ettim.&lt;/p&gt;

&lt;p&gt;Ve araştırmam sonucu sadece 1 tane bulabildim. 
&lt;a href=&quot;https://github.com/enigo-rs/enigo&quot;&gt;enigo&lt;/a&gt;,
xorg 11’i hem klavye hem de mouse için destekliyor. 
Ama yeni nesil olan wayland desteği bulunmuyor. 
Zaten bir çok açıdan halen yetersiz 
&lt;a href=&quot;https://www.cbtnuggets.com/blog/technology/networking/why-use-wayland-versus-x11&quot;&gt;wayland&lt;/a&gt; :)
Kütüphanemizi bulmuştuk ama 
enigo’da ufacık bir problem vardı. 
Mouse konumunu alamıyordu.
Neden mouse konumu bizim için önemli bunu 
geliştirme esnasında anlatacağım.&lt;/p&gt;

&lt;p&gt;Bu yüzden enigo’nun, 
forklanan repoları arasında gezinmeye başladım.
Ve &lt;a href=&quot;https://github.com/Prunkton/enigo&quot;&gt;taaa daaa&lt;/a&gt; buldum.
Bu repo kuracağım algoritma için birebir.
Hadi o zaman kolları sıvayalım 
ve şu lanet olası scripti yazalım :D&lt;/p&gt;

&lt;p&gt;ilk iş olarak cargo ile bir dizin oluşturalım.&lt;/p&gt;
&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;cargo new afk-defender &lt;span class=&quot;nt&quot;&gt;--vcs&lt;/span&gt; none
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;--vcs none&lt;/code&gt; olma sebebi git, hg, pijul veya fossil 
gibi versiyon kontrol sistemlerinin repomuzda 
oluşturulmasını engellemek.
daha sonra &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Cargo.toml&lt;/code&gt; dosyasına gerekli 
kütüphaneleri ekleyelim.&lt;/p&gt;
&lt;div class=&quot;language-toml highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nn&quot;&gt;[package]&lt;/span&gt;
&lt;span class=&quot;py&quot;&gt;name&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;afk-defender&quot;&lt;/span&gt;
&lt;span class=&quot;py&quot;&gt;version&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;0.1.0&quot;&lt;/span&gt;
&lt;span class=&quot;py&quot;&gt;edition&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;2021&quot;&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html&lt;/span&gt;

&lt;span class=&quot;nn&quot;&gt;[dependencies]&lt;/span&gt;
&lt;span class=&quot;nn&quot;&gt;enigo&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;py&quot;&gt;git&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;https://github.com/Prunkton/enigo&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;py&quot;&gt;branch&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;master&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;nn&quot;&gt;clap&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;py&quot;&gt;version&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;3.1.6&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;py&quot;&gt;features&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;[&quot;derive&quot;]&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;clap’ı burada anlatmayacağım, 
kısaca komut satırı argümanlarını pars eden bir kütüphane.
Kullanımı son derece basit.&lt;/p&gt;

&lt;p&gt;Daha sonra &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;src/main.rs&lt;/code&gt; dosyasına geçelim.&lt;/p&gt;

&lt;p&gt;Öncelikle neleri import ettik gelin onlara bakalım.&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;clap&lt;/code&gt;: komut satırı argümanlarını parse etmek için.&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;enigo&lt;/code&gt;: mouse ve klavye işlemleri için.&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;std::thread::sleep&lt;/code&gt;: threadlerin uyumasını sağlamak için.
yani kısaca, programızın beklemesi için.&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;std::time::Duration&lt;/code&gt;: sleep fonksiyonuna 
verilecek parametreler için.
    &lt;div class=&quot;language-rust highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;clap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Parser&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;std&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nn&quot;&gt;thread&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sleep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;std&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nn&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Duration&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;    &lt;/div&gt;
    &lt;p&gt;Burada yapacağımız şey, komut satırından 
&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-t&lt;/code&gt; veya &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;--timer&lt;/code&gt; argümanını alıp 
hangi aralıklarda kontrol yapacağımızı programa söylemek.&lt;/p&gt;
    &lt;div class=&quot;language-rust highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c&quot;&gt;/// nonesleep app&lt;/span&gt;
&lt;span class=&quot;nd&quot;&gt;#[derive(Parser,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;Debug)]&lt;/span&gt;
&lt;span class=&quot;nd&quot;&gt;#[clap(about,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;version,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;author)]&lt;/span&gt; &lt;span class=&quot;c&quot;&gt;// you can discard this if you want.&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;struct&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;NoneSleep&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
  &lt;span class=&quot;c&quot;&gt;/// sleep time in seconds&lt;/span&gt;
  &lt;span class=&quot;nd&quot;&gt;#[clap(short&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;sc&quot;&gt;'t'&lt;/span&gt;&lt;span class=&quot;nd&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;long)]&lt;/span&gt;
  &lt;span class=&quot;n&quot;&gt;timer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;u64&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;    &lt;/div&gt;
    &lt;p&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;defend_ass&lt;/code&gt; fonksiyonu, bizim için son derece önemli.
fonksiyonumuz, verilen x ve y koordinatlarına 
mousemuzu ışınlıyor. Bu nedenle uygulamalar bu ışınlanmayı
hareket olarak algıladığı için bizi
afk olmaktan kurtarıyor.&lt;/p&gt;
    &lt;div class=&quot;language-rust highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c&quot;&gt;// move and click the mouse&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;fn&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;defend_ass&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;i32&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;i32&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;mut&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;Enigo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;.mouse_move_to&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;    &lt;/div&gt;
    &lt;p&gt;gel gelelim main fonksiyonuna. 
Öncelikle clap için bir obje
oluşturuyoruz. Ardından timer argümanını alıyoruz.
sonra sonsuz döngüye giriyoruz ve 
ilk olarak mouse konumunu alıyoruz. 
Daha sonra girilen timer
değeri kadar bekliyoruz. 
Ardından tekrar mouse konumunu alıyoruz.
if bloğu mouse konumunun 
değişip değişmediğini, almış olduğumuz 
iki konuma ait x ve y kordinatlarını 
karşılaştırarak kontrol ediyor.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Eğer mouse konumu değişmemişse, mouse konumunu
bilgisayarın ilk pixeline ışınlıyor. Ve bizi afk olmaktan
kurtarıyor. Eğer değişmişse hiç bir işlem yapmadan 
devam ediyor.&lt;/p&gt;
&lt;div class=&quot;language-rust highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;fn&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;NoneSleep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;parse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;timer&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;py&quot;&gt;.timer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;mut&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;Enigo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;loop&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;first_position&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;.mouse_location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
        &lt;span class=&quot;nf&quot;&gt;sleep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nn&quot;&gt;Duration&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;from_secs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;timer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
        
        &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;second_position&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;.mouse_location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;first_position&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;second_position&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
            &lt;span class=&quot;nf&quot;&gt;defend_ass&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
        &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Kodun tüm hali aşağıda.&lt;/p&gt;
&lt;div class=&quot;language-rust highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;clap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Parser&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;std&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nn&quot;&gt;thread&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sleep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;use&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;std&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nn&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Duration&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;/// nonesleep app&lt;/span&gt;
&lt;span class=&quot;nd&quot;&gt;#[derive(Parser,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;Debug)]&lt;/span&gt;
&lt;span class=&quot;nd&quot;&gt;#[clap(about,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;version,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;author)]&lt;/span&gt; &lt;span class=&quot;c&quot;&gt;// you can discard this if you want.&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;struct&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;NoneSleep&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;c&quot;&gt;/// sleep time in seconds&lt;/span&gt;
    &lt;span class=&quot;nd&quot;&gt;#[clap(short&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;sc&quot;&gt;'t'&lt;/span&gt;&lt;span class=&quot;nd&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nd&quot;&gt;long)]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;timer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;u64&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;// move and click the mouse&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;fn&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;defend_ass&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;i32&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;i32&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;mut&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;Enigo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;.mouse_move_to&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;

&lt;span class=&quot;k&quot;&gt;fn&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;NoneSleep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;parse&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;timer&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;py&quot;&gt;.timer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;mut&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;Enigo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;new&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;loop&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;first_position&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;.mouse_location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
        &lt;span class=&quot;nf&quot;&gt;sleep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nn&quot;&gt;Duration&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;from_secs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;timer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
        
        &lt;span class=&quot;k&quot;&gt;let&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;second_position&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;enigo&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;.mouse_location&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;first_position&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;second_position&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
            &lt;span class=&quot;nf&quot;&gt;defend_ass&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
        &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Ne kadar basit bir kod yazdık :D
Yok rustla iş uzar zart zurtculardansanız
fikriniz belki değişebilir.&lt;/p&gt;

&lt;p&gt;Gelin bir de çalıştıralım.&lt;/p&gt;
&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;cargo run &lt;span class=&quot;nt&quot;&gt;-q&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; 10
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-q&lt;/code&gt; argümanı, cargo’nun çıktılarını engellemek için.&lt;/li&gt;
  &lt;li&gt;&lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-t&lt;/code&gt; argümanı, timer’ı 10 saniye olarak ayarlamak için.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2022/record.gif&quot; alt=&quot;Record&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Yazımın sonuna doğru, yeni yılın hepimiz için güzel ve 
sağlıklı bir şekilde geçmesini diliyorum. Unutmadan,
İşiniz gücünüz &lt;strong&gt;rust&lt;/strong&gt; gitsin :D&lt;/p&gt;
</description>
        <pubDate>Tue, 20 Dec 2022 12:00:00 +0000</pubDate>
        <link>https://sadeceben.github.iohttps://sadeceben.github.io//blog/AFK-DEFENDER/</link>
        <guid isPermaLink="true">https://sadeceben.github.iohttps://sadeceben.github.io//blog/AFK-DEFENDER/</guid>
        
        <category>rust</category>
        
        <category>script</category>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>Google Dorks</title>
        <description>&lt;pre&gt;&lt;code class=&quot;language-log&quot;&gt;&quot;index of&quot; &quot;siri&quot;
&quot;index of&quot; &quot;plugins/wp-rocket&quot;
intitle:&quot;index of&quot; secrets.yml
intitle:&quot;index of /&quot; &quot;*key.pem&quot;
intitle:&quot;index of&quot; &quot;admin/sql/&quot;
intext:&quot;index of /&quot; &quot;config.json&quot;
index of .svn/text-base/index.php.svn-base
intitle:&quot;index of&quot; admin.tar
inurl:/servicedesk/customer/user/login
Dork: &quot;Index of&quot; &quot;upload_image.php&quot;
Dork: &quot;index of&quot; &quot;Production.json&quot;
index.of.?.frm
inurl:wp-content/plugins/brizy
&quot;Index of&quot; &quot;customer.php&quot;
inurl:adminlogin.jsp
inurl:/download_file/ intext:&quot;index of /&quot;
index of /backend/prod/config
intext:&quot;index of /&quot; &quot;customer.php&quot; &quot;~Login&quot;
intext:&quot;INTERNAL USE ONLY&quot; ext:doc OR ext:pdf OR ext:xls OR ext:xlsx
intext:&quot;Welcome to Intranet&quot; &quot;login&quot;
&quot;Index of&quot; &quot;/access&quot;
inurl:admin/data* intext:index of
intext:powered by JoomSport - sport WordPress plugin
inurl:wp-content/themes/newspaper
intitle:&quot;index of&quot; &quot;users.sql&quot;
intext:&quot;index of /&quot; &quot;*.yaml&quot;
index of &quot;jira&quot; inurl:login
inurl:&quot;.Admin;-aspx }&quot; &quot;~Login&quot;
&quot;login&quot; intitle:&quot;intext:&quot;Welcome to Member&quot; login&quot;
intitle:&quot;index of&quot; &quot;survey.cgi&quot;
intitle:index.of.?.db
index of /wp-content/uploads/backupbuddy
index of logs.tar
&quot;Index of&quot; &quot;sass-cache&quot;
&quot;index of sqlite&quot;
inurl:index.shtml
index of &quot;logs.zip&quot;
intitle:&quot;index of&quot; &quot;dev/config&quot;
inurl:&quot;wp-contentpluginsphoto-gallery&quot;
&quot;root.log&quot; ext:log
intitle:&quot;index of&quot; &quot;nrpe.cfg&quot;
intitle:&quot;index of /&quot; &quot;nginx.conf&quot;
intitle:&quot;*Admin Intranet Login&quot;
inurl:.*org/login
intitle:&quot;index of&quot; pass.php
&quot;index of&quot; &quot;fileadmin&quot;
site: target.com ext:action | ext:struts | ext:do
index of &quot;backup.zip&quot;
intitle:&quot;index of&quot; &quot;shell.php&quot;
&quot;microsoft internet information services&quot; ext:log
DORK : intext:&quot;index of&quot; &quot;var/log/&quot;
intitle:&quot;index of&quot; &quot;filemail.pl&quot;
intitle:&quot;index of&quot; &quot;wp-admin.zip&quot;
intitle:&quot;Intranet Login&quot;
intitle:&quot;Dashboard [Jenkins]&quot;
_news/news.php?id=
-site:php.net -&quot;The PHP Group&quot; inurl:source inurl:url ext:pHp
!Host=*.* intext:enc_UserPassword=* ext:pcf
?action=
?cat=
?id=
?intitle:index.of? mp3 artist-name-here
?intitle:index.of? mp3 name
?page=
?pagerequested=
?pid=
&quot; -FrontPage-&quot; ext:pwd inurl:(service | authors | administrators | users)
&quot;: vBulletin Version 1.1.5&quot;
&quot;# -FrontPage-&quot; ext:pwd inurl:(service | authors | administrators | users) &quot;# -FrontPage-&quot; inurl:service.pwd
&quot;#mysql dump&quot; filetype:sql
&quot;#mysql dump&quot; filetype:sql 21232f297a57a5a743894a0e4a801fc3
&quot;A syntax error has occurred&quot; filetype:ihtml
&quot;About Mac OS Personal Web Sharing&quot;
&quot;access denied for user&quot; &quot;using password&quot;
&quot;allow_call_time_pass_reference&quot; &quot;PATH_INFO&quot;
&quot;An illegal character has been found in the statement&quot; -&quot;previous message&quot;
&quot;apricot - admin&quot; 00h
&quot;ASP.NET_SessionId&quot; &quot;data source=&quot;
&quot;AutoCreate=TRUE password=*&quot;
&quot;bp blog admin&quot; intitle:login | intitle:admin -site:johnny.ihackstuff.com
&quot;Can't connect to local&quot; intitle:warning
&quot;Certificate Practice Statement&quot; inurl:(PDF | DOC)
&quot;Chatologica MetaSearch&quot; &quot;stack tracking:&quot;
&quot;Chatologica MetaSearch&quot; &quot;stack tracking&quot;
&quot;detected an internal error [IBM][CLI Driver][DB2/6000]&quot;
&quot;Duclassified&quot; -site:duware.com &quot;DUware All Rights reserved&quot;
&quot;duclassmate&quot; -site:duware.com
&quot;Dudirectory&quot; -site:duware.com
&quot;dudownload&quot; -site:duware.com
&quot;Dumping data for table&quot;
&quot;DUpaypal&quot; -site:duware.com
&quot;Elite Forum Version *.*&quot;
&quot;Emergisoft web applications are a part of our&quot;
&quot;Error Diagnostic Information&quot; intitle:&quot;Error Occurred While&quot;
&quot;error found handling the request&quot; cocoon filetype:xml
&quot;Establishing a secure Integrated Lights Out session with&quot; OR intitle:&quot;Data Frame - Browser not HTTP 1.1 compatible&quot; OR intitle:&quot;HP Integrated Lights-
&quot;Fatal error: Call to undefined function&quot; -reply -the -next
&quot;ftp://&quot; &quot;www.eastgame.net&quot;
&quot;Host Vulnerability Summary Report&quot;
&quot;HostingAccelerator&quot; intitle:&quot;login&quot; +&quot;Username&quot; -&quot;news&quot; -demo
&quot;html allowed&quot; guestbook
&quot;HTTP_FROM=googlebot&quot; googlebot.com &quot;Server_Software=&quot;
&quot;http://*:*@www&quot; domainname
&quot;iCONECT 4.1 :: Login&quot;
&quot;IMail Server Web Messaging&quot; intitle:login
&quot;Incorrect syntax near&quot;
&quot;Index of /&quot; +.htaccess
&quot;Index of /&quot; +passwd
&quot;Index of /&quot; +password.txt
&quot;Index of /admin&quot;
&quot;Index of /backup&quot;
&quot;Index of /mail&quot;
&quot;Index Of /network&quot; &quot;last modified&quot;
&quot;Index of /password&quot;
&quot;index of /private&quot; -site:net -site:com -site:org
&quot;index of /private&quot; site:mil
&quot;Index of&quot; / &quot;chat/logs&quot;
&quot;index of/&quot; &quot;ws_ftp.ini&quot; &quot;parent directory&quot;
&quot;inspanel&quot; intitle:&quot;login&quot; -&quot;cannot&quot; &quot;Login ID&quot; -site:inspediumsoft.com
&quot;Installed Objects Scanner&quot; inurl:default.asp
&quot;Internal Server Error&quot; &quot;server at&quot;
&quot;intitle:3300 Integrated Communications Platform&quot; inurl:main.htm
&quot;intitle:index of&quot;
&quot;Invision Power Board Database Error&quot;
&quot;Link Department&quot;
&quot;liveice configuration file&quot; ext:cfg
&quot;liveice configuration file&quot; ext:cfg -site:sourceforge.net
&quot;Login - Sun Cobalt RaQ&quot;
&quot;login prompt&quot; inurl:GM.cgi
&quot;Login to Usermin&quot; inurl:20000
&quot;MacHTTP&quot; filetype:log inurl:machttp.log
&quot;Mecury Version&quot; &quot;Infastructure Group&quot;
&quot;Microsoft (R) Windows * (TM) Version * DrWtsn32 Copyright (C)&quot; ext:log
&quot;Microsoft ® Windows * ™ Version * DrWtsn32 Copyright ©&quot; ext:log
&quot;Microsoft CRM : Unsupported Browser Version&quot;
&quot;More Info about MetaCart Free&quot;
&quot;Most Submitted Forms and s?ri?ts&quot; &quot;this section&quot;
&quot;Most Submitted Forms and Scripts&quot; &quot;this section&quot;
&quot;mysql dump&quot; filetype:sql
&quot;mySQL error with query&quot;
&quot;Network Host Assessment Report&quot; &quot;Internet Scanner&quot;
&quot;Network Vulnerability Assessment Report&quot;
&quot;not for distribution&quot; confidential
&quot;not for public release&quot; -.edu -.gov -.mil
&quot;OPENSRS Domain Management&quot; inurl:manage.cgi
&quot;ORA-00921: unexpected end of SQL command&quot;
&quot;ORA-00933: SQL command not properly ended&quot;
&quot;ORA-00936: missing expression&quot;
&quot;ORA-12541: TNS:no listener&quot; intitle:&quot;error occurred&quot;
&quot;Output produced by SysWatch *&quot;
&quot;parent directory &quot; /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
&quot;parent directory &quot; DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
&quot;parent directory &quot; Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
&quot;parent directory &quot; MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
&quot;parent directory &quot; Name of Singer or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
&quot;parent directory &quot;Xvid -xxx -html -htm -php -shtml -opendivx -md5 -md5sums
&quot;parent directory&quot; +proftpdpasswd
&quot;Parse error: parse error, unexpected T_VARIABLE&quot; &quot;on line&quot; filetype:php
&quot;pcANYWHERE EXPRESS Java Client&quot;
&quot;phone * * *&quot; &quot;address *&quot; &quot;e-mail&quot; intitle:&quot;curriculum vitae&quot;
&quot;Phorum Admin&quot; &quot;Database Connection&quot; inurl:forum inurl:admin
&quot;phpMyAdmin MySQL-Dump&quot; &quot;INSERT INTO&quot; -&quot;the&quot;
&quot;phpMyAdmin MySQL-Dump&quot; filetype:txt
&quot;phpMyAdmin&quot; &quot;running on&quot; inurl:&quot;main.php&quot;
&quot;Please authenticate yourself to get access to the management interface&quot;
&quot;please log in&quot;
&quot;Please login with admin pass&quot; -&quot;leak&quot; -sourceforge
&quot;PostgreSQL query failed: ERROR: parser: parse error&quot;
&quot;powered | performed by Beyond Security's Automated Scanning&quot; -kazaa -example
&quot;Powered by mnoGoSearch - free web search engine software&quot;
&quot;powered by openbsd&quot; +&quot;powered by apache&quot;
&quot;Powered by UebiMiau&quot; -site:sourceforge.net
&quot;produced by getstats&quot;
&quot;Request Details&quot; &quot;Control Tree&quot; &quot;Server Variables&quot;
&quot;robots.txt&quot; &quot;Disallow:&quot; filetype:txt
&quot;Running in Child mode&quot;
&quot;Select a database to view&quot; intitle:&quot;filemaker pro&quot;
&quot;set up the administrator user&quot; inurl:pivot
&quot;sets mode: +k&quot;
&quot;sets mode: +p&quot;
&quot;sets mode: +s&quot;
&quot;Shadow Security Scanner performed a vulnerability assessment&quot;
&quot;site info for&quot; &quot;Enter Admin Password&quot;
&quot;SnortSnarf alert page&quot;
&quot;SQL Server Driver][SQL Server]Line 1: Incorrect syntax near&quot;
&quot;SquirrelMail version&quot; &quot;By the SquirrelMail development Team&quot;
&quot;Supplied argument is not a valid MySQL result resource&quot;
&quot;Supplied argument is not a valid PostgreSQL result&quot;
&quot;Syntax error in query expression &quot; -the
&quot;SysCP - login&quot;
&quot;Thank you for your order&quot; +receipt
&quot;The following report contains confidential information&quot; vulnerability -search
&quot;The s?ri?t whose uid is &quot; &quot;is not allowed to access&quot;
&quot;The script whose uid is &quot; &quot;is not allowed to access&quot;
&quot;The statistics were last upd?t?d&quot; &quot;Daily&quot;-microsoft.com
&quot;There are no Administrators Accounts&quot; inurl:admin.php -mysql_fetch_row
&quot;There seems to have been a problem with the&quot; &quot; Please try again by clicking the Refresh button in your web browser.&quot;
&quot;This is a restricted Access Server&quot; &quot;Javas?ri?t Not Enabled!&quot;|&quot;Messenger Express&quot; -edu -ac
&quot;This is a Shareaza Node&quot;
&quot;this proxy is working fine!&quot; &quot;enter *&quot; &quot;URL***&quot; * visit
&quot;This report lists&quot; &quot;identified by Internet Scanner&quot;
&quot;This report was generated by WebLog&quot;
&quot;This section is for Administrators only. If you are an administrator then please&quot;
&quot;This summary was generated by wwwstat&quot;
&quot;Traffic Analysis for&quot; &quot;RMON Port * on unit *&quot;
&quot;ttawlogin.cgi/?action=&quot;
&quot;Unable to jump to row&quot; &quot;on MySQL result index&quot; &quot;on line&quot;
&quot;Unclosed quotation mark before the character string&quot;
&quot;Version Info&quot; &quot;Boot Version&quot; &quot;Internet Settings&quot;
&quot;VHCS Pro ver&quot; -demo
&quot;VNC Desktop&quot; inurl:5800
&quot;Warning: Bad arguments to (join|implode) () in&quot; &quot;on line&quot; -help -forum
&quot;Warning: Cannot modify header information - headers already sent&quot;
&quot;Warning: Division by zero in&quot; &quot;on line&quot; -forum
&quot;Warning: mysql_connect(): Access denied for user: '*@*&quot; &quot;on line&quot; -help -forum
&quot;Warning: mysql_query()&quot; &quot;invalid query&quot;
&quot;Warning: pg_connect(): Unable to connect to PostgreSQL server: FATAL&quot;
&quot;Warning: Supplied argument is not a valid File-Handle resource in&quot;
&quot;Warning:&quot; &quot;failed to open stream: HTTP request failed&quot; &quot;on line&quot;
&quot;Warning:&quot; &quot;SAFE MODE Restriction in effect.&quot; &quot;The s?ri?t whose uid is&quot; &quot;is not allowed to access owned by uid 0 in&quot; &quot;on line&quot;
&quot;Warning:&quot; &quot;SAFE MODE Restriction in effect.&quot; &quot;The script whose uid is&quot; &quot;is not allowed to access owned by uid 0 in&quot; &quot;on line&quot;
&quot;Web File Browser&quot; &quot;Use regular expression&quot;
&quot;Web-Based Management&quot; &quot;Please input password to login&quot; -inurl:johnny.ihackstuff.com
&quot;WebExplorer Server - Login&quot; &quot;Welcome to WebExplorer Server&quot;
&quot;WebSTAR Mail - Please Log In&quot;
&quot;Welcome to Administration&quot; &quot;General&quot; &quot;Local Domains&quot; &quot;SMTP Authentication&quot; inurl:admin
&quot;Welcome to Intranet&quot;
&quot;Welcome to PHP-Nuke&quot; congratulations
&quot;Welcome to the Prestige Web-Based Configurator&quot;
&quot;xampp/phpinfo
&quot;YaBB SE Dev Team&quot;
&quot;you can now password&quot; | &quot;this is a special page only seen by you. your profile visitors&quot; inurl:imchaos
&quot;You have an error in your SQL syntax near&quot;
&quot;You have requested access to a restricted area of our website. Please authenticate yourself to continue.&quot;
&quot;You have requested to access the management functions&quot; -.edu
&quot;Your password is * Remember this for later use&quot;
&quot;your password is&quot; filetype:log
( filetype:mail | filetype:eml | filetype:mbox | filetype:mbx ) intext:password|subject
(&quot;Indexed.By&quot;|&quot;Monitored.By&quot;) hAcxFtpScan
((inurl:ifgraph &quot;Page generated at&quot;) OR (&quot;This page was built using ifgraph&quot;))
(intitle:&quot;Please login - Forums
(intitle:&quot;PRTG Traffic Grapher&quot; inurl:&quot;allsensors&quot;)|(intitle:&quot;PRTG Traffic Grapher - Monitoring Results&quot;)
(intitle:&quot;rymo Login&quot;)|(intext:&quot;Welcome to rymo&quot;) -family
(intitle:&quot;WmSC e-Cart Administration&quot;)|(intitle:&quot;WebMyStyle e-Cart Administration&quot;)
(intitle:WebStatistica inurl:main.php) | (intitle:&quot;WebSTATISTICA server&quot;) -inurl:statsoft -inurl:statsoftsa -inurl:statsoftinc.com -edu -software -rob
(inurl:&quot;ars/cgi-bin/arweb?O=0&quot; | inurl:arweb.jsp) -site:remedy.com -site:mil
(inurl:&quot;robot.txt&quot; | inurl:&quot;robots.txt&quot; ) intext:disallow filetype:txt
(inurl:/shop.cgi/page=) | (inurl:/shop.pl/page=)
[WFClient] Password= filetype:ica
*.php?include=
*.php?secc=
********.php?cid=
********s_in_area.php?area_id=
***zine/board.php?board=
*inc*.php?adresa=
*inc*.php?base_dir=
*inc*.php?body=
*inc*.php?c=
*inc*.php?category=
*inc*.php?doshow=
*inc*.php?ev=
*inc*.php?get=
*inc*.php?i=
*inc*.php?inc=
*inc*.php?include=
*inc*.php?j=
*inc*.php?k=
*inc*.php?ki=
*inc*.php?left=
*inc*.php?m=
*inc*.php?menu=
*inc*.php?modo=
*inc*.php?open=
*inc*.php?pg=
*inc*.php?rub=
*inc*.php?sivu=
*inc*.php?start=
*inc*.php?str=
*inc*.php?to=
*inc*.php?type=
*inc*.php?y=
/addpost_newpoll.php?addpoll=preview&amp;amp;amp;thispath=
/admin_modules/admin_module_deldir.inc.php?config[path_src_include]=
/administrator/components/com_serverstat/install.serverstat.php?mosConfig_absolute_path=
/administrator/components/com_uhp/uhp_config.php?mosConfig_absolute_path=
/app/common/lib/codeBeautifier/Beautifier/Core.php?BEAUT_PATH=
/bz/squito/photolist.inc.php?photoroot=
/class.mysql.php?path_to_bt_dir=
/classes.php?LOCAL_PATH=
/classes/adodbt/sql.php?classes_dir=
/classified_right.php?language_dir=
/coin_includes/constants.php?_CCFG[_PKG_PATH_INCL]=
/components/com_cpg/cpg.php?mosConfig_absolute_path=
/components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path=
/components/com_facileforms/facileforms.frame.php?ff_compath=
/components/com_mtree/Savant2/Savant2_Plugin_textarea.php?mosConfig_absolute_path=
/components/com_rsgallery/rsgallery.html.php?mosConfig_absolute_path=
/components/com_smf/smf.php?mosConfig_absolute_path=
/components/com_zoom/includes/database.php?mosConfig_absolute_path=
/contrib/yabbse/poc.php?poc_root_path=
/embed/day.php?path=
/extensions/moblog/moblog_lib.php?basedir=
/functions.php?include_path=
/header.php?abspath=
/include/footer.inc.php?_AMLconfig[cfg_serverpath]=
/include/main.php?config[search_disp]=true&amp;amp;amp;include_dir=
/include/write.php?dir=
/includes/dbal.php?eqdkp_root_path=
/includes/functions_portal.php?phpbb_root_path=
/includes/kb_constants.php?module_root_path=
/includes/orderSuccess.inc.php?glob=1&amp;amp;amp;cart_order_id=1&amp;amp;amp;glob[rootDir]=
/index.php?_REQUEST=&amp;amp;amp;_REQUEST[option]=com_content&amp;amp;amp;_REQUEST[Itemid]=1&amp;amp;amp;GLOBALS=&amp;amp;amp;mosConfig_absolute_path=
/jscript.php?my_ms[root]=
/login.php?dir=
/main.php?sayfa=
/mcf.php?content=
/modules/4nAlbum/public/displayCategory.php?basepath=
/modules/agendax/addevent.inc.php?agendax_path=
/modules/coppermine/include/init.inc.php?CPG_M_DIR=
/modules/Forums/admin/admin_styles.php?phpbb_root_path=
/modules/My_eGallery/public/displayCategory.php?basepath=
/modules/newbb_plus/class/forumpollrenderer.php?bbPath[path]=
/modules/PNphpBB2/includes/functions_admin.php?phpbb_root_path=
/modules/TotalCalendar/about.php?inc_dir=
/modules/vwar/admin/admin.php?vwar_root=
/modules/vwar/admin/admin.php?vwar_root=index.php?loc=
/modules/xgallery/upgrade_album.php?GALLERY_BASEDIR=
/modules/xoopsgallery/upgrade_album.php?GALLERY_BASEDIR=
/photoalb/lib/static/header.php?set_menu=
/phpopenchat/contrib/yabbse/poc.php?sourcedir=
/popup_window.php?site_isp_root=
/ppa/inc/functions.inc.php?config[ppa_root_path]=
/skin/zero_vote/error.php?dir=
/sources/functions.php?CONFIG[main_path]=
/sources/join.php?FORM[url]=owned&amp;amp;amp;CONFIG[captcha]=1&amp;amp;amp;CONFIG[path]=
/sources/template.php?CONFIG[main_path]=
/spid/lang/lang.php?lang_path=
/squirrelcart/cart_content.php?cart_isp_root=
/squito/photolist.inc.php?photoroot=
/surveys/survey.inc.php?path=
/tags.php?BBCodeFile=
/templates/headline_temp.php?nst_inc=
/tools/send_reminders.php?includedir=
/tools/send_reminders.php?includedir= allinurl:day.php?date=
/yabbse/Sources/Packages.php?sourcedir=
/zipndownload.php?PP_PATH=
4images Administration Control Panel
94FBR &quot;ADOBE PHOTOSHOP&quot;
about_us.php?id=
about.php?cartID=
aboutbook.php?id=
aboutchiangmai/details.php?id=
aboutprinter.shtml
abroad/page.php?cid=
accinfo.php?cartId=
acclogin.php?cartID=
add_cart.php?num=
add-to-cart.php?ID=
add.php?bookid=
addcart.php?
addItem.php
addToCart.php?idProduct=
addtomylist.php?ProdId=
admin.php?page=
admin/doeditconfig.php?thispath=../includes&amp;amp;amp;config[path]=
admin/index.php?o=
adminEditProductFields.php?intProdID=
administrator/components/com_a6mambocredits/admin.a6mambocredits.php?mosConfig_live_site=
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path=
administrator/components/com_comprofiler/plugin.class.php?mosConfig_absolute_path= /tools/send_reminders.php?includedir= allinurl:day.php?date=
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=
administrator/components/com_cropimage/admin.cropcanvas.php?cropimagedir=modules/My_eGallery/index.php?basepath=
administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=
administrator/components/com_mgm/help.mgm.php?mosConfig_absolute_path=
administrator/components/com_peoplebook/param.peoplebook.php?mosConfig_absolute_path=
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path=
administrator/components/com_remository/admin.remository.php?mosConfig_absolute_path= /tags.php?BBCodeFile=
administrator/components/com_webring/admin.webring.docs.php?component_dir=
advSearch_h.php?idCategory=
affiliate-agreement.cfm?storeid=
affiliate.php?ID=
affiliates.php?id=
AIM buddy lists
akocomments.php?mosConfig_absolute_path=
aktuelles/meldungen-detail.php?id=
aktuelles/veranstaltungen/detail.php?id=
al_initialize.php?alpath=
allintitle: &quot;index of/admin&quot;
allintitle: &quot;index of/root&quot;
allintitle: restricted filetype :mail
allintitle: restricted filetype:doc site:gov
allintitle: sensitive filetype:doc
allintitle:..&quot;Test page for Apache Installation..&quot;
allintitle:&quot;Network Camera NetworkCamera&quot;
allintitle:&quot;Welcome to the Cyclades&quot;
allintitle:*.php?filename=*
allintitle:*.php?logon=*
allintitle:*.php?page=*
allintitle:admin.php
allinurl: admin mdb
allinurl:.br/index.php?loc=
allinurl:&quot;.r{}_vti_cnf/&quot;
allinurl:&quot;exchange/logon.asp&quot;
allinurl:&quot;index.php&quot; &quot;site=sglinks&quot;
allinurl:*.php?txtCodiInfo=
allinurl:/examples/jsp/snp/snoop.jsp
allinurl:admin mdb
allinurl:auth_user_file.txt
allinurl:cdkey.txt
allinurl:control/multiview
allinurl:install/install.php
allinurl:intranet admin
allinurl:servlet/SnoopServlet
allinurl:wps/portal/ login
An unexpected token &quot;END-OF-STATEMENT&quot; was found
Analysis Console for Incident Databases
ancillary.php?ID=
announce.php?id=
answer/default.php?pollID=
AnyBoard&quot; intitle:&quot;If you are a new user:&quot; intext:&quot;Forum
AnyBoard&quot; inurl:gochat -edu
archive.php?id=
archive/get.php?message_id=
art.php?id=
article_preview.php?id=
article.php?id=
article.php?ID=
articlecategory.php?id=
articles.php?id=
artikelinfo.php?id=
artist_art.php?id=
ASP.login_aspx &quot;ASP.NET_SessionId&quot;
auction/item.php?id=
auth_user_file.txt
authorDetails.php?bookID=
avatar.php?page=
avd_start.php?avd=
band_info.php?id=
base.php?*[*]*=
base.php?abre=
base.php?adresa=
base.php?base_dir=
base.php?basepath=
base.php?body=
base.php?category=
base.php?chapter=
base.php?choix=
base.php?cont=
base.php?disp=
base.php?doshow=
base.php?ev=
base.php?eval=
base.php?filepath=
base.php?home=
base.php?id=
base.php?incl=
base.php?include=
base.php?ir=
base.php?itemnav=
base.php?k=
base.php?ki=
base.php?l=
base.php?lang=
base.php?link=
base.php?loc=
base.php?mid=
base.php?middle=
base.php?middlePart=
base.php?module=
base.php?name=
base.php?numero=
base.php?oldal=
base.php?opcion=
base.php?pa=
base.php?pag=
base.php?pageweb=
base.php?panel=
base.php?path=
base.php?phpbb_root_path=
base.php?play=
base.php?pname=
base.php?rub=
base.php?seccion=
base.php?second=
base.php?seite=
base.php?sekce=
base.php?sivu=
base.php?str=
base.php?subject=
base.php?t=
base.php?texto=
base.php?to=
base.php?v=
base.php?var=
base.php?w=
basket.php?id=
bayer/dtnews.php?id=
bb_usage_stats/include/bb_usage_stats.php?phpbb_root_path=
bbs/bbsView.php?id=
bbs/view.php?no=
beitrag_D.php?id=
beitrag_F.php?id=
bid/topic.php?TopicID=
big.php?pathtotemplate=
blank.php?abre=
blank.php?action=
blank.php?base_dir=
blank.php?basepath=
blank.php?body=
blank.php?category=
blank.php?channel=
blank.php?corpo=
blank.php?destino=
blank.php?dir=
blank.php?filepath=
blank.php?get=
blank.php?goFile=
blank.php?goto=
blank.php?h=
blank.php?header=
blank.php?id=
blank.php?in=
blank.php?incl=
blank.php?ir=
blank.php?itemnav=
blank.php?j=
blank.php?ki=
blank.php?lang=
blank.php?left=
blank.php?link=
blank.php?loader=
blank.php?menu=
blank.php?mod=
blank.php?name=
blank.php?o=
blank.php?oldal=
blank.php?open=
blank.php?OpenPage=
blank.php?pa=
blank.php?page=
blank.php?pagina=
blank.php?panel=
blank.php?path=
blank.php?phpbb_root_path=
blank.php?pname=
blank.php?pollname=
blank.php?pr=
blank.php?pre=
blank.php?pref=
blank.php?qry=
blank.php?read=
blank.php?ref=
blank.php?rub=
blank.php?section=
blank.php?sivu=
blank.php?sp=
blank.php?strona=
blank.php?subject=
blank.php?t=
blank.php?url=
blank.php?var=
blank.php?where=
blank.php?xlink=
blank.php?z=
blog_detail.php?id=
blog.php?blog=
blog/index.php?idBlog=
board_view.html?id=
board_view.php?s_board_id=
board/board.html?table=
board/kboard.php?board=
board/read.php?tid=
board/showthread.php?t=
board/view_temp.php?table=
board/view.php?no=
boardView.php?bbs=
book_detail.php?BookID=
book_list.php?bookid=
book_view.php?bookid=
book.html?isbn=
Book.php?bookID=
book.php?ID=
book.php?id=
book.php?ISBN=
book.php?isbn=
book/bookcover.php?bookid=
BookDetails.php?ID=
bookDetails.php?id=
bookmark/mybook/bookmark.php?bookPageNo=
bookpage.php?id=
books.php?id=
books/book.php?proj_nr=
bookview.php?id=
bp_ncom.php?bnrep=
bpac/calendar/event.php?id=
brand.php?id=
browse_item_details.php
Browse_Item_Details.php?Store_Id=
browse.php?catid=
browse/book.php?journalID=
browsepr.php?pr=
buy.php?
buy.php?bookid=
buy.php?category=
bycategory.php?id=
calendar/event.php?id=
camera linksys inurl:main.cgi
Canon Webview netcams
cardinfo.php?card=
cart_additem.php?id=
cart_validate.php?id=
cart.php?action=
cart.php?cart_id=
cart.php?id=
cart/addToCart.php?cid=
cart/product.php?productid=
cartadd.php?id=
cat.php?cat_id=
cat.php?iCat=
cat/?catid=
catalog_item.php?ID=
catalog_main.php?catid=
catalog.php
catalog.php?CatalogID=
catalog/main.php?cat_id=
catalog/product.php?cat_id=
catalog/product.php?pid=
categories.php?cat=
category_list.php?id=
category.php
category.php?c=
category.php?catid=
category.php?CID=
category.php?cid=
Category.php?cid=
category.php?id_category=
category.php?id=
categorydisplay.php?catid=
cats.php?cat=
cbmer/congres/page.php?LAN=
cei/cedb/projdetail.php?projID=
cemetery.php?id=
CGI:IRC Login
cgiirc.conf
channel_id=
channel/channel-layout.php?objId=
chappies.php?id=
checkout_confirmed.php?order_id=
checkout.php?cartid=
checkout.php?UserID=
checkout1.php?cartid=
clan_page.php?cid=
clanek.php4?id=
classes/adodbt/sql.php?classes_dir=
classifieds/detail.php?siteid=
classifieds/showproduct.php?product=
cloudbank/detail.php?ID=
club.php?cid=
clubpage.php?id=
Coldfusion Error Pages
collectionitem.php?id=
colourpointeducational/more_details.php?id=
comersus_listCategoriesAndProducts.php?idCategory=
comersus_optEmailToFriendForm.php?idProduct=
comersus_optReviewReadExec.php?idProduct=
comersus_viewItem.php?idProduct=
Comersus.mdb database
comments_form.php?ID=
comments.php?id=
communique_detail.php?id=
community/calendar-event-fr.php?id=
components/com_artlinks/artlinks.dispnew.php?mosConfig_absolute_path=
components/com_cpg/cpg.php?mosConfig_absolute_path=
components/com_extcalendar/admin_events.php?CONFIG_EXT[LANGUAGES_DIR]=
components/com_extended_registration/registration_detailed.inc.php?mosConfig_absolute_path=
components/com_forum/download.php?phpbb_root_path=
components/com_galleria/galleria.html.php?mosConfig_absolute_path=
components/com_mtree/Savant2/Savant2_Plugin_stylesheet.php?mosConfig_absolute_path=
components/com_performs/performs.php?mosConfig_absolute_path=
components/com_phpshop/toolbar.phpshop.html.php?mosConfig_absolute_path=
components/com_rsgallery/rsgallery.html.php?mosConfig_absolute_path=
components/com_simpleboard/image_upload.php?sbp=
Computer Science.php?id=
confidential site:mil
config.php
config.php?_CCFG[_PKG_PATH_DBSE]=
ConnectionTest.java filetype:html
constructies/product.php?id=
contact.php?cartId=
contacts ext:wml
contenido.php?sec=
content.php?arti_id=
content.php?categoryId=
content.php?cID=
content.php?cid=
content.php?cont_title=
content.php?id
content.php?id=
content.php?ID=
content.php?p=
content.php?page=
content.php?PID=
content/conference_register.php?ID=
content/detail.php?id=
content/index.php?id=
content/pages/index.php?id_cat=
content/programme.php?ID=
content/view.php?id=
coppercop/theme.php?THEME_DIR=
corporate/newsreleases_more.php?id=
county-facts/diary/vcsgen.php?id=
cps/rde/xchg/tm/hs.xsl/liens_detail.html?lnkId=
cryolab/content.php?cid=
csc/news-details.php?cat=
customer/board.htm?mode=
customer/home.php?cat=
customerService.php?****ID1=
CuteNews&quot; &quot;2003..2005 CutePHP&quot;
data filetype:mdb -site:gov -site:mil
db.php?path_local=
db/CART/product_details.php?product_id=
de/content.php?page_id=
deal_coupon.php?cat_id=
debate-detail.php?id=
declaration_more.php?decl_id=
default.php?*root*=
default.php?abre=
default.php?base_dir=
default.php?basepath=
default.php?body=
default.php?catID=
default.php?channel=
default.php?chapter=
default.php?choix=
default.php?cmd=
default.php?cont=
default.php?cPath=
default.php?destino=
default.php?e=
default.php?eval=
default.php?f=
default.php?goto=
default.php?header=
default.php?inc=
default.php?incl=
default.php?include=
default.php?index=
default.php?ir=
default.php?itemnav=
default.php?k=
default.php?ki=
default.php?l=
default.php?left=
default.php?load=
default.php?loader=
default.php?loc=
default.php?m=
default.php?menu=
default.php?menue=
default.php?mid=
default.php?mod=
default.php?module=
default.php?n=
default.php?name=
default.php?nivel=
default.php?oldal=
default.php?opcion=
default.php?option=
default.php?p=
default.php?pa=
default.php?pag=
default.php?page=
default.php?pageweb=
default.php?panel=
default.php?param=
default.php?play=
default.php?pr=
default.php?pre=
default.php?read=
default.php?ref=
default.php?rub=
default.php?secao=
default.php?secc=
default.php?seccion=
default.php?seite=
default.php?showpage=
default.php?sivu=
default.php?sp=
default.php?str=
default.php?strona=
default.php?t=
default.php?thispage=
default.php?TID=
default.php?tipo=
default.php?to=
default.php?type=
default.php?v=
default.php?var=
default.php?x=
default.php?y=
description.php?bookid=
designcenter/item.php?id=
detail.php?id=
detail.php?ID=
detail.php?item_id=
detail.php?prodid=
detail.php?prodID=
detail.php?siteid=
detailedbook.php?isbn=
details.php?BookID=
details.php?id=
details.php?Press_Release_ID=
details.php?prodId=
details.php?ProdID=
details.php?prodID=
details.php?Product_ID=
details.php?Service_ID=
directory/contenu.php?id_cat=
discussions/10/9/?CategoryID=
display_item.php?id=
display_page.php?id=
display.php?ID=
displayArticleB.php?id=
displayproducts.php
displayrange.php?rangeid=
docDetail.aspx?chnum=
down*.php?action=
down*.php?addr=
down*.php?channel=
down*.php?choix=
down*.php?cmd=
down*.php?corpo=
down*.php?disp=
down*.php?doshow=
down*.php?ev=
down*.php?filepath=
down*.php?goFile=
down*.php?home=
down*.php?in=
down*.php?inc=
down*.php?incl=
down*.php?include=
down*.php?ir=
down*.php?lang=
down*.php?left=
down*.php?nivel=
down*.php?oldal=
down*.php?open=
down*.php?OpenPage=
down*.php?pa=
down*.php?pag=
down*.php?pageweb=
down*.php?param=
down*.php?path=
down*.php?pg=
down*.php?phpbb_root_path=
down*.php?pollname=
down*.php?pr=
down*.php?pre=
down*.php?qry=
down*.php?r=
down*.php?read=
down*.php?s=
down*.php?second=
down*.php?section=
down*.php?seite=
down*.php?showpage=
down*.php?sp=
down*.php?strona=
down*.php?subject=
down*.php?t=
down*.php?texto=
down*.php?to=
down*.php?u=
down*.php?url=
down*.php?v=
down*.php?where=
down*.php?x=
down*.php?z=
download.php?id=
downloads_info.php?id=
downloads.php?id=
downloads/category.php?c=
downloads/shambler.php?id=
downloadTrial.php?intProdID=
Duclassified&quot; -site:duware.com &quot;DUware All Rights reserved&quot;
duclassmate&quot; -site:duware.com
Dudirectory&quot; -site:duware.com
dudownload&quot; -site:duware.com
DUpaypal&quot; -site:duware.com
DWMail&quot; password intitle:dwmail
e_board/modifyform.html?code=
edatabase/home.php?cat=
edition.php?area_id=
education/content.php?page=
eggdrop filetype:user user
Elite Forum Version *.*&quot;
els_/product/product.php?id=
emailproduct.php?itemid=
emailToFriend.php?idProduct=
en/main.php?id=
en/news/fullnews.php?newsid=
en/publications.php?id=
enable password | secret &quot;current configuration&quot; -intext:the
enc/content.php?Home_Path=
eng_board/view.php?T****=
eng/rgboard/view.php?&amp;amp;amp;bbs_id=
english/board/view****.php?code=
english/fonction/print.php?id=
english/print.php?id=
english/publicproducts.php?groupid=
enter.php?a=
enter.php?abre=
enter.php?addr=
enter.php?b=
enter.php?base_dir=
enter.php?body=
enter.php?chapter=
enter.php?cmd=
enter.php?content=
enter.php?e=
enter.php?ev=
enter.php?get=
enter.php?go=
enter.php?goto=
enter.php?home=
enter.php?id=
enter.php?incl=
enter.php?include=
enter.php?index=
enter.php?ir=
enter.php?itemnav=
enter.php?lang=
enter.php?left=
enter.php?link=
enter.php?loader=
enter.php?menue=
enter.php?mid=
enter.php?middle=
enter.php?mod=
enter.php?module=
enter.php?name=
enter.php?numero=
enter.php?open=
enter.php?pa=
enter.php?page=
enter.php?pagina=
enter.php?panel=
enter.php?path=
enter.php?pg=
enter.php?phpbb_root_path=
enter.php?play=
enter.php?pname=
enter.php?pr=
enter.php?pref=
enter.php?qry=
enter.php?r=
enter.php?read=
enter.php?ref=
enter.php?s=
enter.php?sec=
enter.php?second=
enter.php?seite=
enter.php?sivu=
enter.php?sp=
enter.php?start=
enter.php?str=
enter.php?strona=
enter.php?subject=
enter.php?texto=
enter.php?thispage=
enter.php?type=
enter.php?viewpage=
enter.php?w=
enter.php?y=
etc (index.of)
event_details.php?id=
event_info.php?p=
event.php?id=
events?id=
events.php?ID=
events/detail.php?ID=
events/event_detail.php?id=
events/event.php?id=
events/event.php?ID=
events/index.php?id=
events/unique_event.php?ID=
exhibition_overview.php?id=
exhibitions/detail.php?id=
exported email addresses
ext:(doc | pdf | xls | txt | ps | rtf | odt | sxw | psw | ppt | pps | xml) (intext:confidential salary | intext:&quot;budget approved&quot;) inurl:confidential
ext:asa | ext:bak intext:uid intext:pwd -&quot;uid..pwd&quot; database | server | dsn
ext:asp inurl:pathto.asp
ext:ccm ccm -catacomb
ext:CDX CDX
ext:cfg radius.cfg
ext:cgi intext:&quot;nrg-&quot; &quot; This web page was created on &quot;
ext:cgi intitle:&quot;control panel&quot; &quot;enter your owner password to continue!&quot;
ext:cgi inurl:editcgi.cgi inurl:file=
ext:conf inurl:rsyncd.conf -cvs -man
ext:conf NoCatAuth -cvs
ext:dat bpk.dat
ext:gho gho
ext:ics ics
ext:inc &quot;pwd=&quot; &quot;UID=&quot;
ext:ini eudora.ini
ext:ini intext:env.ini
ext:ini Version=4.0.0.4 password
ext:jbf jbf
ext:ldif ldif
ext:log &quot;Software: Microsoft Internet Information Services *.*&quot;
ext:mdb inurl:*.mdb inurl:fpdb shop.mdb
ext:nsf nsf -gov -mil
ext:passwd -intext:the -sample -example
ext:plist filetype:plist inurl:bookmarks.plist
ext:pqi pqi -database
ext:pwd inurl:(service | authors | administrators | users) &quot;# -FrontPage-&quot;
ext:reg &quot;username=*&quot; putty
ext:txt &quot;Final encryption key&quot;
ext:txt inurl:dxdiag
ext:txt inurl:unattend.txt
ext:vmdk vmdk
ext:vmx vmx
ext:yml database inurl:config
ez Publish administration
faq_list.php?id=
faq.php?cartID=
faq2.php?id=
faqs.php?id=
fatcat/home.php?view=
feature.php?id=
features/view.php?id=
feedback.php?title=
fellows.php?id=
FernandFaerie/index.php?c=
fiche_spectacle.php?id=
Fichier contenant des informations sur le r?seau :
file.php?action=
file.php?basepath=
file.php?body=
file.php?channel=
file.php?chapter=
file.php?choix=
file.php?cmd=
file.php?cont=
file.php?corpo=
file.php?disp=
file.php?doshow=
file.php?ev=
file.php?eval=
file.php?get=
file.php?id=
file.php?inc=
file.php?incl=
file.php?include=
file.php?index=
file.php?ir=
file.php?ki=
file.php?left=
file.php?load=
file.php?loader=
file.php?middle=
file.php?modo=
file.php?n=
file.php?nivel=
file.php?numero=
file.php?oldal=
file.php?pagina=
file.php?param=
file.php?pg=
file.php?play=
file.php?pollname=
file.php?pref=
file.php?q=
file.php?qry=
file.php?ref=
file.php?seccion=
file.php?second=
file.php?showpage=
file.php?sivu=
file.php?sp=
file.php?start=
file.php?strona=
file.php?texto=
file.php?to=
file.php?type=
file.php?url=
file.php?var=
file.php?viewpage=
file.php?where=
file.php?y=
filemanager.php?delete=
filetype:asp &quot;Custom Error Message&quot; Category Source
filetype:asp + &quot;[ODBC SQL&quot;
filetype:ASP ASP
filetype:asp DBQ=&quot; * Server.MapPath(&quot;*.mdb&quot;)
filetype:ASPX ASPX
filetype:bak createobject sa
filetype:bak inurl:&quot;htaccess|passwd|shadow|htusers&quot;
filetype:bkf bkf
filetype:blt &quot;buddylist&quot;
filetype:blt blt +intext:screenname
filetype:BML BML
filetype:cfg auto_inst.cfg
filetype:cfg ks intext:rootpw -sample -test -howto
filetype:cfg mrtg &quot;target
filetype:cfm &quot;cfapplication name&quot; password
filetype:CFM CFM
filetype:CGI CGI
filetype:cgi inurl:&quot;fileman.cgi&quot;
filetype:cgi inurl:&quot;Web_Store.cgi&quot;
filetype:cnf inurl:_vti_pvt access.cnf
filetype:conf inurl:firewall -intitle:cvs
filetype:conf inurl:psybnc.conf &quot;USER.PASS=&quot;
filetype:conf oekakibbs
filetype:conf slapd.conf
filetype:config config intext:appSettings &quot;User ID&quot;
filetype:config web.config -CVS
filetype:ctt Contact
filetype:ctt ctt messenger
filetype:dat &quot;password.dat
filetype:dat &quot;password.dat&quot;
filetype:dat inurl:Sites.dat
filetype:dat wand.dat
filetype:DIFF DIFF
filetype:DLL DLL
filetype:DOC DOC
filetype:eml eml +intext:&quot;Subject&quot; +intext:&quot;From&quot; +intext:&quot;To&quot;
filetype:FCGI FCGI
filetype:fp3 fp3
filetype:fp5 fp5 -site:gov -site:mil -&quot;cvs log&quot;
filetype:fp7 fp7
filetype:HTM HTM
filetype:HTML HTML
filetype:inc dbconn
filetype:inc intext:mysql_connect
filetype:inc mysql_connect OR mysql_pconnect
filetype:inf inurl:capolicy.inf
filetype:inf sysprep
filetype:ini inurl:&quot;serv-u.ini&quot;
filetype:ini inurl:flashFXP.ini
filetype:ini ServUDaemon
filetype:ini wcx_ftp
filetype:ini ws_ftp pwd
filetype:JHTML JHTML
filetype:JSP JSP
filetype:ldb admin
filetype:lic lic intext:key
filetype:log &quot;PHP Parse error&quot; | &quot;PHP Warning&quot; | &quot;PHP Error&quot;
filetype:log &quot;See `ipsec --copyright&quot;
filetype:log access.log -CVS
filetype:log cron.log
filetype:log intext:&quot;ConnectionManager2&quot;
filetype:log inurl:&quot;password.log&quot;
filetype:log inurl:password.log
filetype:mbx mbx intext:Subject
filetype:mdb inurl:users.mdb
filetype:mdb wwforum
filetype:MV MV
filetype:myd myd -CVS
filetype:netrc password
filetype:ns1 ns1
filetype:ora ora
filetype:ora tnsnames
filetype:pass pass intext:userid
filetype:pdb pdb backup (Pilot | Pluckerdb)
filetype:pdf &quot;Assessment Report&quot; nessus
filetype:PDF PDF
filetype:pem intext:private
filetype:php inurl:&quot;logging.php&quot; &quot;Discuz&quot; error
filetype:php inurl:&quot;webeditor.php&quot;
filetype:php inurl:index inurl:phpicalendar -site:sourceforge.net
filetype:php inurl:ipinfo.php &quot;Distributed Intrusion Detection System&quot;
filetype:php inurl:nqt intext:&quot;Network Query Tool&quot;
filetype:php inurl:vAuthenticate
filetype:PHP PHP
filetype:PHP3 PHP3
filetype:PHP4 PHP4
filetype:PHTML PHTML
filetype:pl &quot;Download: SuSE Linux Openexchange Server CA&quot;
filetype:pl intitle:&quot;Ultraboard Setup&quot;
filetype:PL PL
filetype:pot inurl:john.pot
filetype:PPT PPT
filetype:properties inurl:db intext:password
filetype:PS ps
filetype:PS PS
filetype:pst inurl:&quot;outlook.pst&quot;
filetype:pst pst -from -to -date
filetype:pwd service
filetype:pwl pwl
filetype:qbb qbb
filetype:QBW qbw
filetype:r2w r2w
filetype:rdp rdp
filetype:reg &quot;Terminal Server Client&quot;
filetype:reg reg +intext:&quot;defaultusername&quot; +intext:&quot;defaultpassword&quot;
filetype:reg reg +intext:Ã¢? WINVNC3Ã¢?
filetype:reg reg HKEY_CURRENT_USER SSHHOSTKEYS
filetype:SHTML SHTML
filetype:sql &quot;insert into&quot; (pass|passwd|password)
filetype:sql (&quot;values * MD5&quot; | &quot;values * password&quot; | &quot;values * encrypt&quot;)
filetype:sql +&quot;IDENTIFIED BY&quot; -cvs
filetype:sql password
filetype:STM STM
filetype:SWF SWF
filetype:TXT TXT
filetype:url +inurl:&quot;ftp://&quot; +inurl:&quot;;@&quot;
filetype:vcs vcs
filetype:vsd vsd network -samples -examples
filetype:wab wab
filetype:xls -site:gov inurl:contact
filetype:xls inurl:&quot;email.xls&quot;
filetype:xls username password email
filetype:XLS XLS
Financial spreadsheets: finance.xls
Financial spreadsheets: finances.xls
folder.php?id=
forum_bds.php?num=
forum.php?act=
forum/profile.php?id=
forum/showProfile.php?id=
fr/commande-liste-categorie.php?panier=
free_board/board_view.html?page=
freedownload.php?bookid=
front/bin/forumview.phtml?bbcode=
frontend/category.php?id_category=
fshstatistic/index.php?PID=
fullDisplay.php?item=
FullStory.php?Id=
galerie.php?cid=
Gallery in configuration mode
gallery.php?*[*]*=
gallery.php?abre=
gallery.php?action=
gallery.php?addr=
gallery.php?base_dir=
gallery.php?basepath=
gallery.php?chapter=
gallery.php?cont=
gallery.php?corpo=
gallery.php?disp=
gallery.php?ev=
gallery.php?eval=
gallery.php?filepath=
gallery.php?get=
gallery.php?go=
gallery.php?h=
gallery.php?id=
gallery.php?index=
gallery.php?itemnav=
gallery.php?ki=
gallery.php?left=
gallery.php?loader=
gallery.php?menu=
gallery.php?menue=
gallery.php?mid=
gallery.php?mod=
gallery.php?module=
gallery.php?my=
gallery.php?name=
gallery.php?nivel=
gallery.php?oldal=
gallery.php?open=
gallery.php?option=
gallery.php?pag=
gallery.php?page=
gallery.php?pageweb=
gallery.php?panel=
gallery.php?param=
gallery.php?pg=
gallery.php?phpbb_root_path=
gallery.php?pname=
gallery.php?pollname=
gallery.php?pre=
gallery.php?pref=
gallery.php?qry=
gallery.php?redirect=
gallery.php?ref=
gallery.php?rub=
gallery.php?sec=
gallery.php?secao=
gallery.php?seccion=
gallery.php?seite=
gallery.php?showpage=
gallery.php?sivu=
gallery.php?sp=
gallery.php?strona=
gallery.php?thispage=
gallery.php?tipo=
gallery.php?to=
gallery.php?url=
gallery.php?var=
gallery.php?viewpage=
gallery.php?where=
gallery.php?xlink=
gallery.php?y=
gallery/detail.php?ID=
gallery/gallery.php?id=
gallerysort.php?iid=
game.php?id=
games.php?id=
Ganglia Cluster Reports
garden_equipment/Fruit-Cage/product.php?pr=
garden_equipment/pest-weed-control/product.php?pr=
gb/comment.php?gb_id=
general.php?abre=
general.php?addr=
general.php?adresa=
general.php?b=
general.php?base_dir=
general.php?body=
general.php?channel=
general.php?chapter=
general.php?choix=
general.php?cmd=
general.php?content=
general.php?doshow=
general.php?e=
general.php?f=
general.php?get=
general.php?goto=
general.php?header=
general.php?id=
general.php?inc=
general.php?include=
general.php?ir=
general.php?itemnav=
general.php?left=
general.php?link=
general.php?menu=
general.php?menue=
general.php?mid=
general.php?middle=
general.php?modo=
general.php?module=
general.php?my=
general.php?name=
general.php?nivel=
general.php?opcion=
general.php?p=
general.php?page=
general.php?pageweb=
general.php?pollname=
general.php?pr=
general.php?pre=
general.php?qry=
general.php?read=
general.php?redirect=
general.php?ref=
general.php?rub=
general.php?secao=
general.php?seccion=
general.php?second=
general.php?section=
general.php?seite=
general.php?sekce=
general.php?sivu=
general.php?strona=
general.php?subject=
general.php?texto=
general.php?thispage=
general.php?tipo=
general.php?to=
general.php?type=
general.php?var=
general.php?w=
general.php?where=
general.php?xlink=
getbook.php?bookid=
GetItems.php?itemid=
giftDetail.php?id=
gig.php?id=
global_projects.php?cid=
global/product/product.php?gubun=
gnu/?doc=
goboard/front/board_view.php?code=
goods_detail.php?data=
haccess.ctl (one way)
haccess.ctl (VERY reliable)
hall.php?file=
hall.php?page=
Hassan Consulting's Shopping Cart Version 1.18
head.php?*[*]*=
head.php?abre=
head.php?adresa=
head.php?b=
head.php?base_dir=
head.php?c=
head.php?choix=
head.php?cmd=
head.php?content=
head.php?corpo=
head.php?d=
head.php?dir=
head.php?disp=
head.php?ev=
head.php?filepath=
head.php?g=
head.php?goto=
head.php?inc=
head.php?incl=
head.php?include=
head.php?index=
head.php?ir=
head.php?ki=
head.php?lang=
head.php?left=
head.php?load=
head.php?loader=
head.php?loc=
head.php?middle=
head.php?middlePart=
head.php?mod=
head.php?modo=
head.php?module=
head.php?numero=
head.php?oldal=
head.php?opcion=
head.php?pag=
head.php?pageweb=
head.php?play=
head.php?pname=
head.php?pollname=
head.php?read=
head.php?ref=
head.php?rub=
head.php?sec=
head.php?sekce=
head.php?sivu=
head.php?start=
head.php?str=
head.php?strona=
head.php?tipo=
head.php?viewpage=
head.php?where=
head.php?y=
help.php?CartId=
help.php?css_path=
help/com_view.html?code=
historialeer.php?num=
HistoryStore/pages/item.php?itemID=
hm/inside.php?id=
home.php?a=
home.php?action=
home.php?addr=
home.php?base_dir=
home.php?basepath=
home.php?body=
home.php?cat=
home.php?category=
home.php?channel=
home.php?chapter=
home.php?choix=
home.php?cmd=
home.php?content=
home.php?disp=
home.php?doshow=
home.php?e=
home.php?ev=
home.php?eval=
home.php?g=
home.php?h=
home.php?id=
home.php?ID=
home.php?in=
home.php?include=
home.php?index=
home.php?ir=
home.php?itemnav=
home.php?k=
home.php?link=
home.php?loader=
home.php?loc=
home.php?menu=
home.php?middle=
home.php?middlePart=
home.php?module=
home.php?my=
home.php?oldal=
home.php?opcion=
home.php?pa=
home.php?page=
home.php?pageweb=
home.php?pagina=
home.php?panel=
home.php?path=
home.php?play=
home.php?pollname=
home.php?pr=
home.php?pre=
home.php?qry=
home.php?read=
home.php?recipe=
home.php?redirect=
home.php?ref=
home.php?rub=
home.php?sec=
home.php?secao=
home.php?section=
home.php?seite=
home.php?sekce=
home.php?showpage=
home.php?sp=
home.php?str=
home.php?thispage=
home.php?tipo=
home.php?w=
home.php?where=
home.php?x=
home.php?z=
homepage.php?sel=
hosting_info.php?id=
ht://Dig htsearch error
html/print.php?sid=
html/scoutnew.php?prodid=
htmlpage.php?id=
htmltonuke.php?filnavn=
htpasswd
htpasswd / htgroup
htpasswd / htpasswd.bak
humor.php?id=
i-know/content.php?page=
ibp.php?ISBN=
ICQ chat logs, please...
idlechat/message.php?id=
ihm.php?p=
IIS 4.0 error messages
IIS web server error messages
IlohaMail&quot;
impex/ImpExData.php?systempath=
inc/cmses/aedating4CMS.php?dir[inc]=
inc/cmses/aedating4CMS.php?dir[inc]= inurl:flashchat site:br bp_ncom.php?bnrep=
inc/cmses/aedatingCMS.php?dir[inc]=
inc/functions.inc.php?config[ppa_root_path]=
inc/header.php/step_one.php?server_inc=
inc/pipe.php?HCL_path=
include.php?*[*]*=
include.php?adresa=
include.php?b=
include.php?basepath=
include.php?channel=
include.php?chapter=
include.php?cmd=
include.php?cont=
include.php?content=
include.php?corpo=
include.php?destino=
include.php?dir=
include.php?eval=
include.php?filepath=
include.php?go=
include.php?goFile=
include.php?goto=
include.php?header=
include.php?in=
include.php?include=
include.php?index=
include.php?ir=
include.php?ki=
include.php?left=
include.php?loader=
include.php?loc=
include.php?mid=
include.php?middle=
include.php?middlePart=
include.php?module=
include.php?my=
include.php?name=
include.php?nivel=
include.php?numero=
include.php?oldal=
include.php?option=
include.php?pag=
include.php?pageweb=
include.php?panel=
include.php?path=
include.php?phpbb_root_path=
include.php?play=
include.php?read=
include.php?redirect=
include.php?ref=
include.php?sec=
include.php?secao=
include.php?seccion=
include.php?second=
include.php?sivu=
include.php?tipo=
include.php?to=
include.php?u=
include.php?url=
include.php?w=
include.php?x=
include/editfunc.inc.php?NWCONF_SYSTEM[server_path]=
include/new-visitor
include/new-visitor.inc.php?lvc_include_dir=
include/write.php?dir=
includes/functions.php?phpbb_root_path=
includes/header.php?systempath=
includes/search.php?GlobalSettings[templatesDirectory]=
Index of phpMyAdmin
index of: intext:Gallery in Configuration mode
index_en.php?id=
index_en.php?ref=
index_principal.php?pagina=
index.of passlist
index.php?_REQUEST=&amp;amp;amp;_REQUEST%5boption%5d=com_content&amp;amp;amp;_REQUEST%5bItemid%5d=1&amp;amp;amp;GLOBALS=&amp;amp;amp;mosConfig_absolute_path=
index.php?=
index.php?a=
index.php?action=
index.php?addr=
index.php?adresa=
index.php?area_id=
index.php?arquivo=
index.php?b=
index.php?base_dir=
index.php?basepath=
index.php?body=
index.php?book=
index.php?c=
index.php?canal=
index.php?cart=
index.php?cartID=
index.php?cat=
index.php?channel=
index.php?chapter=
index.php?cid=
index.php?cmd=
index.php?configFile=
index.php?cont=
index.php?content=
index.php?conteudo=
index.php?cPath=
index.php?dept=
index.php?disp=
index.php?do=
index.php?doc=
index.php?dsp=
index.php?ev=
index.php?file=
index.php?filepath=
index.php?go=
index.php?goto=
index.php?i=
index.php?ID=
index.php?id=
index.php?inc=
index.php?incl=
index.php?include=
index.php?index=
index.php?inhalt=
index.php?j=
index.php?kobr=
index.php?l=
index.php?lang=
index.php?lang=gr&amp;amp;amp;file
index.php?langc=
index.php?Language=
index.php?lg=
index.php?link=
index.php?load=
index.php?Load=
index.php?loc=
index.php?meio.php=
index.php?meio=
index.php?menu=
index.php?menu=deti&amp;amp;amp;page=
index.php?mid=
index.php?middlePart=
index.php?mode=
index.php?modo=
index.php?module=
index.php?modus=
index.php?news=
index.php?nic=
index.php?offs=
index.php?oldal=
index.php?op=
index.php?opcao=
index.php?opcion=
index.php?open=
index.php?openfile=
index.php?option=
index.php?ort=
index.php?p=
index.php?pag=
index.php?page=
index.php?pageid=
index.php?pageId=
index.php?pagename=
index.php?pageurl=
index.php?pagina=
index.php?param=
index.php?path=
index.php?pg_t=
index.php?pg=
index.php?pid=
index.php?pilih=
index.php?place=
index.php?play=
index.php?pname=
index.php?pollname=
index.php?pr=
index.php?pre=
index.php?pref=
index.php?principal=
index.php?r=
index.php?rage=
index.php?recipe=
index.php?RP_PATH=
index.php?screen=
index.php?secao=
index.php?section=
index.php?sekce=
index.php?sel=
index.php?show=
index.php?side=
index.php?site=
index.php?sivu=
index.php?str=
index.php?stranica=
index.php?strona=
index.php?sub=
index.php?sub=index.php?id=index.php?t=
index.php?t=
index.php?template=
index.php?tipo=
index.php?to=
index.php?topic=
index.php?type=
index.php?u=
index.php?u=administrator/components/com_linkdirectory/toolbar.linkdirectory.html.php?mosConfig_absolute_path=
index.php?url=
index.php?var=
index.php?visualizar=
index.php?w=
index.php?where=
index.php?x=
index.php?x= index.php?mode=index.php?stranica=
index.php?y=
index.php/en/component/pvm/?view=
index.phpmain.php?x=
index0.php?show=
index1.php?*[*]*=
index1.php?*root*=
index1.php?=
index1.php?abre=
index1.php?action=
index1.php?adresa=
index1.php?b=
index1.php?body=
index1.php?c=
index1.php?chapter=
index1.php?choix=
index1.php?cmd=
index1.php?d=
index1.php?dat=
index1.php?dir=
index1.php?filepath=
index1.php?get=
index1.php?go=
index1.php?goFile=
index1.php?home=
index1.php?incl=
index1.php?itemnav=
index1.php?l=
index1.php?link=
index1.php?load=
index1.php?loc=
index1.php?menu=
index1.php?mod=
index1.php?modo=
index1.php?my=
index1.php?nivel=
index1.php?o=
index1.php?oldal=
index1.php?op=
index1.php?OpenPage=
index1.php?pa=
index1.php?pagina=
index1.php?param=
index1.php?path=
index1.php?pg=
index1.php?pname=
index1.php?pollname=
index1.php?pr=
index1.php?pre=
index1.php?qry=
index1.php?read=
index1.php?recipe=
index1.php?redirect=
index1.php?second=
index1.php?seite=
index1.php?sekce=
index1.php?showpage=
index1.php?site=
index1.php?str=
index1.php?strona=
index1.php?subject=
index1.php?t=
index1.php?texto=
index1.php?tipo=
index1.php?type=
index1.php?url=
index1.php?v=
index1.php?var=
index1.php?x=
index2.php?action=
index2.php?adresa=
index2.php?ascii_seite=
index2.php?base_dir=
index2.php?basepath=
index2.php?category=
index2.php?channel=
index2.php?chapter=
index2.php?choix=
index2.php?cmd=
index2.php?content=
index2.php?corpo=
index2.php?d=
index2.php?DoAction=
index2.php?doshow=
index2.php?e=
index2.php?f=
index2.php?filepath=
index2.php?get=
index2.php?goto=
index2.php?home=
index2.php?ID=
index2.php?in=
index2.php?inc=
index2.php?incl=
index2.php?include=
index2.php?ir=
index2.php?itemnav=
index2.php?ki=
index2.php?left=
index2.php?link=
index2.php?load=
index2.php?loader=
index2.php?loc=
index2.php?module=
index2.php?my=
index2.php?oldal=
index2.php?open=
index2.php?OpenPage=
index2.php?option=
index2.php?p=
index2.php?pa=
index2.php?param=
index2.php?pg=
index2.php?phpbb_root_path=
index2.php?pname=
index2.php?pollname=
index2.php?pre=
index2.php?pref=
index2.php?qry=
index2.php?recipe=
index2.php?redirect=
index2.php?ref=
index2.php?rub=
index2.php?second=
index2.php?section=
index2.php?sekce=
index2.php?showpage=
index2.php?strona=
index2.php?texto=
index2.php?thispage=
index2.php?to=
index2.php?type=
index2.php?u=
index2.php?url_page=
index2.php?var=
index2.php?x=
index3.php?abre=
index3.php?addr=
index3.php?adresa=
index3.php?base_dir=
index3.php?body=
index3.php?channel=
index3.php?chapter=
index3.php?choix=
index3.php?cmd=
index3.php?d=
index3.php?destino=
index3.php?dir=
index3.php?disp=
index3.php?ev=
index3.php?get=
index3.php?go=
index3.php?home=
index3.php?inc=
index3.php?include=
index3.php?index=
index3.php?ir=
index3.php?itemnav=
index3.php?left=
index3.php?link=
index3.php?loader=
index3.php?menue=
index3.php?mid=
index3.php?middle=
index3.php?mod=
index3.php?my=
index3.php?name=
index3.php?nivel=
index3.php?oldal=
index3.php?open=
index3.php?option=
index3.php?p=
index3.php?pag=
index3.php?pageweb=
index3.php?panel=
index3.php?path=
index3.php?phpbb_root_path=
index3.php?pname=
index3.php?pollname=
index3.php?pre=
index3.php?pref=
index3.php?q=
index3.php?read=
index3.php?redirect=
index3.php?ref=
index3.php?rub=
index3.php?secao=
index3.php?secc=
index3.php?seccion=
index3.php?second=
index3.php?sekce=
index3.php?showpage=
index3.php?sivu=
index3.php?sp=
index3.php?start=
index3.php?t=
index3.php?thispage=
index3.php?tipo=
index3.php?type=
index3.php?url=
index3.php?var=
index3.php?x=
index3.php?xlink=
info.php?*[*]*=
info.php?adresa=
info.php?base_dir=
info.php?body=
info.php?c=
info.php?chapter=
info.php?content=
info.php?doshow=
info.php?ev=
info.php?eval=
info.php?f=
info.php?filepath=
info.php?go=
info.php?header=
info.php?home=
info.php?ID=
info.php?in=
info.php?incl=
info.php?ir=
info.php?itemnav=
info.php?j=
info.php?ki=
info.php?l=
info.php?loader=
info.php?menue=
info.php?mid=
info.php?middlePart=
info.php?o=
info.php?oldal=
info.php?op=
info.php?opcion=
info.php?option=
info.php?pageweb=
info.php?pagina=
info.php?param=
info.php?phpbb_root_path=
info.php?pname=
info.php?pref=
info.php?r=
info.php?read=
info.php?recipe=
info.php?redirect=
info.php?ref=
info.php?rub=
info.php?sec=
info.php?secao=
info.php?seccion=
info.php?start=
info.php?strona=
info.php?subject=
info.php?t=
info.php?texto=
info.php?url=
info.php?var=
info.php?xlink=
info.php?z=
install/index.php?lng=../../include/main.inc&amp;amp;amp;G_PATH=
Interior/productlist.php?id=
interna/tiny_mce/plugins/ibrowser/ibrowser.php?tinyMCE_imglib_include=
Internal Server Error
intext:&quot;&quot;BiTBOARD v2.0&quot; BiTSHiFTERS Bulletin Board&quot;
intext:&quot;d.aspx?id&quot; || inurl:&quot;d.aspx?id&quot;
intext:&quot;enable password 7&quot;
intext:&quot;enable secret 5 $&quot;
intext:&quot;Error Message : Error loading required libraries.&quot;
intext:&quot;EZGuestbook&quot;
intext:&quot;Fill out the form below completely to change your password and user name. If new username is left blank, your old one will be assumed.&quot; -edu
intext:&quot;Mail admins login here to administrate your domain.&quot;
intext:&quot;Master Account&quot; &quot;Domain Name&quot; &quot;Password&quot; inurl:/cgi-bin/qmailadmin
intext:&quot;Powered By : SE Software Technologies&quot; filetype:php
intext:&quot;powered by Web Wiz Journal&quot;
intext:&quot;Session Start * * * *:*:* *&quot; filetype:log
intext:&quot;SteamUserPassphrase=&quot; intext:&quot;SteamAppUser=&quot; -&quot;username&quot; -&quot;user&quot;
intext:&quot;Storage Management Server for&quot; intitle:&quot;Server Administration&quot;
intext:&quot;Tobias Oetiker&quot; &quot;traffic analysis&quot;
intext:&quot;vbulletin&quot; inurl:admincp
intext:&quot;Warning: * am able * write ** configuration file&quot; &quot;includes/configure.php&quot; -
intext:&quot;Warning: Failed opening&quot; &quot;on line&quot; &quot;include_path&quot;
intext:&quot;Web Wiz Journal&quot;
intext:&quot;Welcome to the Web V.Networks&quot; intitle:&quot;V.Networks [Top]&quot; -filetype:htm
intext:&quot;Welcome to&quot; inurl:&quot;cp&quot; intitle:&quot;H-SPHERE&quot; inurl:&quot;begin.html&quot; -Fee
intext:(password | passcode) intext:(username | userid | user) filetype:csv
intext:gmail invite intext:http://gmail.google.com/gmail/a
intext:SQLiteManager inurl:main.php
intext:ViewCVS inurl:Settings.php
intitle:&quot;--- VIDEO WEB SERVER ---&quot; intext:&quot;Video Web Server&quot; &quot;Any time &amp;amp;amp; Any where&quot; username password
intitle:&quot;*- HP WBEM Login&quot; | &quot;You are being prompted to provide login account information for *&quot; | &quot;Please provide the information requested and press
intitle:&quot;500 Internal Server Error&quot; &quot;server at&quot;
intitle:&quot;actiontec&quot; main setup status &quot;Copyright 2001 Actiontec Electronics Inc&quot;
intitle:&quot;Admin Login&quot; &quot;admin login&quot; &quot;blogware&quot;
intitle:&quot;Admin login&quot; &quot;Web Site Administration&quot; &quot;Copyright&quot;
intitle:&quot;admin panel&quot; +&quot;
intitle:&quot;admin panel&quot; +&quot;RedKernel&quot;
intitle:&quot;ADSL Configuration page&quot;
intitle:&quot;AlternC Desktop&quot;
intitle:&quot;Apache Tomcat&quot; &quot;Error Report&quot;
intitle:&quot;Apache::Status&quot; (inurl:server-status | inurl:status.html | inurl:apache.html)
intitle:&quot;AppServ Open Project&quot; -site:www.appservnetwork.com
intitle:&quot;ASP Stats Generator *.*&quot; &quot;ASP Stats Generator&quot; &quot;2003-2004 weppos&quot;
intitle:&quot;Athens Authentication Point&quot;
intitle:&quot;Azureus : Java BitTorrent Client Tracker&quot;
intitle:&quot;b2evo &amp;amp;gt; Login form&quot; &quot;Login form. You must log in! You will have to accept cookies in order to log in&quot; -demo -site:b2evolution.net
intitle:&quot;Belarc Advisor Current Profile&quot; intext:&quot;Click here for Belarc's PC Management products, for large and small companies.&quot;
intitle:&quot;Big Sister&quot; +&quot;OK Attention Trouble&quot;
intitle:&quot;BNBT Tracker Info&quot;
intitle:&quot;Browser Launch Page&quot;
intitle:&quot;Cisco CallManager User Options Log On&quot; &quot;Please enter your User ID and Password in the spaces provided below and click the Log On button to co
intitle:&quot;ColdFusion Administrator Login&quot;
intitle:&quot;communigate pro * *&quot; intitle:&quot;entrance&quot;
intitle:&quot;Connection Status&quot; intext:&quot;Current login&quot;
intitle:&quot;Content Management System&quot; &quot;user name&quot;|&quot;password&quot;|&quot;admin&quot; &quot;Microsoft IE 5.5&quot; -mambo
intitle:&quot;curriculum vitae&quot; filetype:doc
intitle:&quot;Default PLESK Page&quot;
intitle:&quot;Dell Remote Access Controller&quot;
intitle:&quot;DocuShare&quot; inurl:&quot;docushare/dsweb/&quot; -faq -gov -edu
intitle:&quot;Docutek ERes - Admin Login&quot; -edu
intitle:&quot;edna:streaming mp3 server&quot; -forums
intitle:&quot;Employee Intranet Login&quot;
intitle:&quot;eMule *&quot; intitle:&quot;- Web Control Panel&quot; intext:&quot;Web Control Panel&quot; &quot;Enter your password here.&quot;
intitle:&quot;ePowerSwitch Login&quot;
intitle:&quot;Error Occurred While Processing Request&quot; +WHERE (SELECT|INSERT) filetype:cfm
intitle:&quot;Error Occurred&quot; &quot;The error occurred in&quot; filetype:cfm
intitle:&quot;Error using Hypernews&quot; &quot;Server Software&quot;
intitle:&quot;EverFocus.EDSR.applet&quot;
intitle:&quot;Execution of this s?ri?t not permitted&quot;
intitle:&quot;Execution of this script not permitted&quot;
intitle:&quot;eXist Database Administration&quot; -demo
intitle:&quot;EXTRANET * - Identification&quot;
intitle:&quot;EXTRANET login&quot; -.edu -.mil -.gov
intitle:&quot;EZPartner&quot; -netpond
intitle:&quot;Flash Operator Panel&quot; -ext:php -wiki -cms -inurl:asternic -inurl:sip -intitle:ANNOUNCE -inurl:lists
intitle:&quot;FTP root at&quot;
intitle:&quot;Gateway Configuration Menu&quot;
intitle:&quot;Horde :: My Portal&quot; -&quot;[Tickets&quot;
intitle:&quot;i-secure v1.1&quot; -edu
intitle:&quot;Icecast Administration Admin Page&quot;
intitle:&quot;iDevAffiliate - admin&quot; -demo
intitle:&quot;inc. vpn 3000 concentrator&quot;
intitle:&quot;Index of..etc&quot; passwd
intitle:&quot;Index Of&quot; -inurl:maillog maillog size
intitle:&quot;Index of&quot; .bash_history
intitle:&quot;Index of&quot; .mysql_history
intitle:&quot;Index of&quot; .sh_history
intitle:&quot;Index of&quot; &quot;.htpasswd&quot; &quot;htgroup&quot; -intitle:&quot;dist&quot; -apache -htpasswd.c
intitle:&quot;index of&quot; +myd size
intitle:&quot;Index of&quot; cfide
intitle:&quot;Index Of&quot; cookies.txt size
intitle:&quot;index of&quot; etc/shadow
intitle:&quot;index of&quot; htpasswd
intitle:&quot;index of&quot; intext:connect.inc
intitle:&quot;index of&quot; intext:globals.inc
intitle:&quot;index of&quot; master.passwd
intitle:&quot;index of&quot; members OR accounts
intitle:&quot;index of&quot; mysql.conf OR mysql_config
intitle:&quot;index of&quot; passwd
intitle:&quot;Index of&quot; passwords modified
intitle:&quot;index of&quot; people.lst
intitle:&quot;index of&quot; pwd.db
intitle:&quot;Index of&quot; pwd.db
intitle:&quot;Index of&quot; sc_serv.conf sc_serv content
intitle:&quot;index of&quot; spwd
intitle:&quot;Index of&quot; spwd.db passwd -pam.conf
intitle:&quot;Index of&quot; upload size parent directory
intitle:&quot;index of&quot; user_carts OR user_cart
intitle:&quot;index.of *&quot; admin news.asp configview.asp
intitle:&quot;index.of&quot; .diz .nfo last modified
intitle:&quot;ISPMan : Unauthorized Access prohibited&quot;
intitle:&quot;ITS System Information&quot; &quot;Please log on to the SAP System&quot;
intitle:&quot;iVISTA.Main.Page&quot;
intitle:&quot;Joomla - Web Installer&quot;
intitle:&quot;Kurant Corporation StoreSense&quot; filetype:bok
intitle:&quot;ListMail Login&quot; admin -demo
intitle:&quot;live view&quot; intitle:axis
intitle:&quot;Login -
intitle:&quot;Login Forum
intitle:&quot;Login to @Mail&quot; (ext:pl | inurl:&quot;index&quot;) -dwaffleman
intitle:&quot;Login to Cacti&quot;
intitle:&quot;Login to the forums - @www.aimoo.com&quot; inurl:login.cfm?id=
intitle:&quot;LOGREP - Log file reporting system&quot; -site:itefix.no
intitle:&quot;Mail Server CMailServer Webmail&quot; &quot;5.2&quot;
intitle:&quot;MailMan Login&quot;
intitle:&quot;Member Login&quot; &quot;NOTE: Your browser must have cookies enabled in order to log into the site.&quot; ext:php OR ext:cgi
intitle:&quot;Merak Mail Server Web Administration&quot; -ihackstuff.com
intitle:&quot;microsoft certificate services&quot; inurl:certsrv
intitle:&quot;Microsoft Site Server Analysis&quot;
intitle:&quot;MikroTik RouterOS Managing Webpage&quot;
intitle:&quot;Multimon UPS status page&quot;
intitle:&quot;MvBlog powered&quot;
intitle:&quot;MX Control Console&quot; &quot;If you can't remember&quot;
intitle:&quot;Nessus Scan Report&quot; &quot;This file was generated by Nessus&quot;
intitle:&quot;network administration&quot; inurl:&quot;nic&quot;
intitle:&quot;Novell Web Services&quot; &quot;GroupWise&quot; -inurl:&quot;doc/11924&quot; -.mil -.edu -.gov -filetype:pdf
intitle:&quot;Novell Web Services&quot; intext:&quot;Select a service and a language.&quot;
intitle:&quot;OfficeConnect Cable/DSL Gateway&quot; intext:&quot;Checking your browser&quot;
intitle:&quot;oMail-admin Administration - Login&quot; -inurl:omnis.ch
intitle:&quot;OnLine Recruitment Program - Login&quot;
intitle:&quot;Philex 0.2*&quot; -s?ri?t -site:freelists.org
intitle:&quot;Philex 0.2*&quot; -script -site:freelists.org
intitle:&quot;PHP Advanced Transfer&quot; (inurl:index.php | inurl:showrecent.php )
intitle:&quot;PHP Advanced Transfer&quot; inurl:&quot;login.php&quot;
intitle:&quot;php icalendar administration&quot; -site:sourceforge.net
intitle:&quot;PHPBTTracker Statistics&quot; | intitle:&quot;PHPBT Tracker Statistics&quot;
intitle:&quot;phpinfo()&quot; +&quot;mysql.default_password&quot; +&quot;Zend s?ri?ting Language Engine&quot;
intitle:&quot;PhpMyExplorer&quot; inurl:&quot;index.php&quot; -cvs
intitle:&quot;phpPgAdmin - Login&quot; Language
intitle:&quot;PHProjekt - login&quot; login password
intitle:&quot;please login&quot; &quot;your password is *&quot;
intitle:&quot;remote assessment&quot; OpenAanval Console
intitle:&quot;Remote Desktop Web Connection&quot;
intitle:&quot;Remote Desktop Web Connection&quot; inurl:tsweb
intitle:&quot;Retina Report&quot; &quot;CONFIDENTIAL INFORMATION&quot;
intitle:&quot;Samba Web Administration Tool&quot; intext:&quot;Help Workgroup&quot;
intitle:&quot;SFXAdmin - sfx_global&quot; | intitle:&quot;SFXAdmin - sfx_local&quot; | intitle:&quot;SFXAdmin - sfx_test&quot;
intitle:&quot;SHOUTcast Administrator&quot; inurl:admin.cgi
intitle:&quot;site administration: please log in&quot; &quot;site designed by emarketsouth&quot;
intitle:&quot;start.managing.the.device&quot; remote pbx acc
intitle:&quot;statistics of&quot; &quot;advanced web statistics&quot;
intitle:&quot;Supero Doctor III&quot; -inurl:supermicro
intitle:&quot;supervisioncam protocol&quot;
intitle:&quot;SuSE Linux Openexchange Server&quot; &quot;Please activate Javas?ri?t!&quot;
intitle:&quot;SuSE Linux Openexchange Server&quot; &quot;Please activate JavaScript!&quot;
intitle:&quot;switch login&quot; &quot;IBM Fast Ethernet Desktop&quot;
intitle:&quot;SWW link&quot; &quot;Please wait.....&quot;
intitle:&quot;sysinfo * &quot; intext:&quot;Generated by Sysinfo * written by The Gamblers.&quot;
intitle:&quot;System Statistics&quot; +&quot;System and Network Information Center&quot;
intitle:&quot;teamspeak server-administration
intitle:&quot;Terminal Services Web Connection&quot;
intitle:&quot;Tomcat Server Administration&quot;
intitle:&quot;TOPdesk ApplicationServer&quot;
intitle:&quot;TUTOS Login&quot;
intitle:&quot;TWIG Login&quot;
intitle:&quot;twiki&quot; inurl:&quot;TWikiUsers&quot;
intitle:&quot;Under construction&quot; &quot;does not currently have&quot;
intitle:&quot;Uploader - Uploader v6&quot; -pixloads.com
intitle:&quot;urchin (5|3|admin)&quot; ext:cgi
intitle:&quot;Usage Statistics for&quot; &quot;Generated by Webalizer&quot;
intitle:&quot;vhost&quot; intext:&quot;vHost . 2000-2004&quot;
intitle:&quot;Virtual Server Administration System&quot;
intitle:&quot;VisNetic WebMail&quot; inurl:&quot;/mail/&quot;
intitle:&quot;VitalQIP IP Management System&quot;
intitle:&quot;VMware Management Interface:&quot; inurl:&quot;vmware/en/&quot;
intitle:&quot;VNC viewer for Java&quot;
intitle:&quot;wbem&quot; compaq login &quot;Compaq Information Technologies Group&quot;
intitle:&quot;Web Server Statistics for ****&quot;
intitle:&quot;web server status&quot; SSH Telnet
intitle:&quot;web-cyradm&quot;|&quot;by Luc de Louw&quot; &quot;This is only for authorized users&quot; -tar.gz -site:web-cyradm.org
intitle:&quot;WebLogic Server&quot; intitle:&quot;Console Login&quot; inurl:console
intitle:&quot;Welcome Site/User Administrator&quot; &quot;Please select the language&quot; -demos
intitle:&quot;Welcome to F-Secure Policy Manager Server Welcome Page&quot;
intitle:&quot;Welcome to Mailtraq WebMail&quot;
intitle:&quot;welcome to netware *&quot; -site:novell.com
intitle:&quot;Welcome to the Advanced Extranet Server, ADVX!&quot;
intitle:&quot;Welcome to Windows 2000 Internet Services&quot;
intitle:&quot;welcome.to.squeezebox&quot;
intitle:&quot;WJ-NT104 Main Page&quot;
intitle:&quot;WorldClient&quot; intext:&quot;? (2003|2004) Alt-N Technologies.&quot;
intitle:&quot;xams 0.0.0..15 - Login&quot;
intitle:&quot;XcAuctionLite&quot; | &quot;DRIVEN BY XCENT&quot; Lite inurl:admin
intitle:&quot;XMail Web Administration Interface&quot; intext:Login intext:password
intitle:&quot;Zope Help System&quot; inurl:HelpSys
intitle:&quot;ZyXEL Prestige Router&quot; &quot;Enter password&quot;
intitle:(&quot;TrackerCam Live Video&quot;)|(&quot;TrackerCam Application Login&quot;)|(&quot;Trackercam Remote&quot;) -trackercam.com
intitle:admin intitle:login
intitle:asterisk.management.portal web-access
intitle:axis intitle:&quot;video server&quot;
intitle:Bookmarks inurl:bookmarks.html &quot;Bookmarks
intitle:Configuration.File inurl:softcart.exe
intitle:dupics inurl:(add.asp | default.asp | view.asp | voting.asp) -site:duware.com
intitle:endymion.sak?.mail.login.page | inurl:sake.servlet
intitle:Group-Office &quot;Enter your username and password to login&quot;
intitle:ilohamail &quot;
intitle:ilohamail intext:&quot;Version 0.8.10&quot; &quot;
intitle:IMP inurl:imp/index.php3
intitle:index.of &quot;Apache&quot; &quot;server at&quot;
intitle:index.of administrators.pwd
intitle:index.of cgiirc.config
intitle:index.of cleanup.log
intitle:index.of dead.letter
intitle:Index.of etc shadow
intitle:Index.of etc shadow site:passwd
intitle:index.of inbox
intitle:index.of inbox dbx
intitle:index.of intext:&quot;secring.skr&quot;|&quot;secring.pgp&quot;|&quot;secring.bak&quot;
intitle:index.of master.passwd
intitle:index.of passwd passwd.bak
intitle:index.of people.lst
intitle:index.of trillian.ini
intitle:index.of ws_ftp.ini
intitle:intranet inurl:intranet +intext:&quot;phone&quot;
intitle:liveapplet
intitle:Login * Webmailer
intitle:Login intext:&quot;RT is ? Copyright&quot;
intitle:Node.List Win32.Version.3.11
intitle:Novell intitle:WebAccess &quot;Copyright *-* Novell, Inc&quot;
intitle:open-xchange inurl:login.pl
intitle:opengroupware.org &quot;resistance is obsolete&quot; &quot;Report Bugs&quot; &quot;Username&quot; &quot;password&quot;
intitle:osCommerce inurl:admin intext:&quot;redistributable under the GNU&quot; intext:&quot;Online Catalog&quot; -demo -site:oscommerce.com
intitle:Ovislink inurl:private/login
intitle:phpMyAdmin &quot;Welcome to phpMyAdmin ***&quot; &quot;running on * as &amp;lt;a href=&quot;/cdn-cgi/l/email-protection&quot; class=&quot;__cf_email__&quot; data-cfemail=&quot;10627f7f6450&quot;&amp;gt;[email&amp;amp;#160;protected]&amp;lt;/a&amp;gt;*&quot;
intitle:phpnews.login
intitle:plesk inurl:login.php3
intitle:rapidshare intext:login
inurl::2082/frontend -demo
inurl:&quot;:10000&quot; intext:webmin
inurl:&quot;/admin/configuration. php?&quot; Mystore
inurl:&quot;/axs/ax-admin.pl&quot; -s?ri?t
inurl:&quot;/axs/ax-admin.pl&quot; -script
inurl:&quot;/catalog.nsf&quot; intitle:catalog
inurl:&quot;/cricket/grapher.cgi&quot;
inurl:&quot;/NSearch/AdminServlet&quot;
inurl:&quot;/slxweb.dll/external?name=(custportal|webticketcust)&quot;
inurl:&quot;1220/parse_xml.cgi?&quot;
inurl:&quot;631/admin&quot; (inurl:&quot;op=*&quot;) | (intitle:CUPS)
inurl:&quot;8003/Display?what=&quot;
inurl:&quot;Activex/default.htm&quot; &quot;Demo&quot;
inurl:&quot;auth_user_file.txt&quot;
inurl:&quot;bookmark.htm&quot;
inurl:&quot;cacti&quot; +inurl:&quot;graph_view.php&quot; +&quot;Settings Tree View&quot; -cvs -RPM
inurl:&quot;calendar.asp?action=login&quot;
inurl:&quot;calendars?ri?t/users.txt&quot;
inurl:&quot;default/login.php&quot; intitle:&quot;kerio&quot;
inurl:&quot;editor/list.asp&quot; | inurl:&quot;database_editor.asp&quot; | inurl:&quot;login.asa&quot; &quot;are set&quot;
inurl:&quot;GRC.DAT&quot; intext:&quot;password&quot;
inurl:&quot;gs/adminlogin.aspx&quot;
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: array_merge()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: filesize()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: getimagesize()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: ilesize()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: is_writable()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: mysql_fetch_array()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: mysql_fetch_assoc()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: mysql_num_rows()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: mysql_query()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: mysql_result()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: pg_exec()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: preg_match()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: require()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: session_start()
inurl:&quot;id=&quot; &amp;amp;amp; intext:&quot;Warning: Unknown()
inurl:&quot;index.php? module=ew_filemanager&quot;
inurl:&quot;install/install.php&quot;
inurl:&quot;map.asp?&quot; intitle:&quot;WhatsUp Gold&quot;
inurl:&quot;newsletter/admin/&quot;
inurl:&quot;newsletter/admin/&quot; intitle:&quot;newsletter admin&quot;
inurl:&quot;NmConsole/Login.asp&quot; | intitle:&quot;Login - Ipswitch WhatsUp Professional 2005&quot; | intext:&quot;Ipswitch WhatsUp Professional 2005 (SP1)&quot; &quot;Ipswitch, Inc&quot;
inurl:&quot;php121login.php&quot;
inurl:&quot;printer/main.html&quot; intext:&quot;settings&quot;
inurl:&quot;putty.reg&quot;
inurl:&quot;Sites.dat&quot;+&quot;PASS=&quot;
inurl:&quot;sitescope.html&quot; intitle:&quot;sitescope&quot; intext:&quot;refresh&quot; -demo
inurl:&quot;slapd.conf&quot; intext:&quot;credentials&quot; -manpage -&quot;Manual Page&quot; -man: -sample
inurl:&quot;slapd.conf&quot; intext:&quot;rootpw&quot; -manpage -&quot;Manual Page&quot; -man: -sample
inurl:&quot;smb.conf&quot; intext:&quot;workgroup&quot; filetype:conf conf
inurl:&quot;suse/login.pl&quot;
inurl:&quot;typo3/index.php?u=&quot; -demo
inurl:&quot;usysinfo?login=true&quot;
inurl:&quot;utilities/TreeView.asp&quot;
inurl:&quot;ViewerFrame?Mode=&quot;
inurl:&quot;vsadmin/login&quot; | inurl:&quot;vsadmin/admin&quot; inurl:.php|.asp
inurl:&quot;wvdial.conf&quot; intext:&quot;password&quot;
inurl:&quot;wwwroot/
inurl:*db filetype:mdb
inurl:/_layouts/settings
inurl:/*.php?id=
inurl:/adm-cfgedit.php
inurl:/admin/login.asp
inurl:/articles.php?id=
inurl:/calendar.php?token=
inurl:/careers-detail.asp?id=
inurl:/cgi-bin/finger? &quot;In real life&quot;
inurl:/cgi-bin/finger? Enter (account|host|user|username)
inurl:/cgi-bin/pass.txt
inurl:/cgi-bin/sqwebmail?noframes=1
inurl:/Citrix/Nfuse17/
inurl:/CollectionContent.asp?id=
inurl:/commodities.php?*id=
inurl:/Content.asp?id=
inurl:/counter/index.php intitle:&quot;+PHPCounter 7.*&quot;
inurl:/dana-na/auth/welcome.html
inurl:/db/main.mdb
inurl:/default.php?id=
inurl:/default.php?portalID=
inurl:/Details.asp?id=
inurl:/details.php?linkid=
inurl:/dosearch.asp?
inurl:/eprise/
inurl:/eventdetails.php?*=
inurl:/filedown.php?file=
inurl:/gallery.asp?cid=
inurl:/games.php?id= &quot;Powered by PHPD Game Edition&quot;
inurl:/gmap.php?id=
inurl:/imprimir.php?id=
inurl:/include/footer.inc.php?_AMLconfig[cfg_serverpath]=
inurl:/index.php?pgId=
inurl:/index.php?PID= &quot;Powered By Dew-NewPHPLinks v.2.1b&quot;
inurl:/list_blogs.php?sort_mode=
inurl:/Merchant2/admin.mv | inurl:/Merchant2/admin.mvc | intitle:&quot;Miva Merchant Administration Login&quot; -inurl:cheap-malboro.net
inurl:/modcp/ intext:Moderator+vBulletin
inurl:/mpfn=pdview&amp;amp;amp;id=
inurl:/news.php?include=
inurl:/notizia.php?idArt=
inurl:/os_view_full.php?
inurl:/prodotti.php?id=
inurl:/publications.asp?type=
inurl:/recipe-view.php?id=
inurl:/reservations.php?id=
inurl:/shared/help.php?page=
inurl:/squirrelcart/cart_content.php?cart_isp_root=
inurl:/SUSAdmin intitle:&quot;Microsoft Software upd?t? Services&quot;
inurl:/SUSAdmin intitle:&quot;Microsoft Software Update Services&quot;
inurl:/view/lang/index.php?page=?page=
inurl:/viewfaqs.php?cat=
inurl:/webedit.* intext:WebEdit Professional -html
inurl:/WhatNew.asp?page=&amp;amp;amp;id=
inurl:/wwwboard
inurl:/yabb/Members/Admin.dat
inurl:1810 &quot;Oracle Enterprise Manager&quot;
inurl:2000 intitle:RemotelyAnywhere -site:realvnc.com
inurl:aboutbook.php?id=
inurl:access
inurl:act=
inurl:action=
inurl:admin filetype:db
inurl:admin filetype:xls
inurl:admin intitle:login
inurl:administrator &quot;welcome to mambo&quot;
inurl:ages.php?id=
inurl:ajax.php?page=
inurl:announce.php?id=
inurl:aol*/_do/rss_popup?blogID=
inurl:API_HOME_DIR=
inurl:art.php?idm=
inurl:article.php?ID=
inurl:article.php?id=
inurl:artikelinfo.php?id=
inurl:asp
inurl:avd_start.php?avd=
inurl:axis-cgi/jpg
inurl:axis-cgi/mjpg (motion-JPEG)
inurl:backup filetype:mdb
inurl:band_info.php?id=
inurl:bin.welcome.sh | inurl:bin.welcome.bat | intitle:eHealth.5.0
inurl:board=
inurl:build.err
inurl:buy
inurl:buy.php?category=
inurl:cat=
inurl:category.php?id=
inurl:ccbill filetype:log
inurl:cgi
inurl:cgi-bin inurl:calendar.cfg
inurl:cgi-bin/printenv
inurl:cgi-bin/testcgi.exe &quot;Please distribute TestCGI&quot;
inurl:cgi-bin/ultimatebb.cgi?ubb=login
inurl:cgiirc.config
inurl:changepassword.asp
inurl:channel_id=
inurl:chap-secrets -cvs
inurl:chappies.php?id=
inurl:Citrix/MetaFrame/default/default.aspx
inurl:clanek.php4?id=
inurl:client_id=
inurl:clubpage.php?id=
inurl:cmd=
inurl:collectionitem.php?id=
inurl:communique_detail.php?id=
inurl:config.php dbuname dbpass
inurl:confixx inurl:login|anmeldung
inurl:cont=
inurl:coranto.cgi intitle:Login (Authorized Users Only)
inurl:CrazyWWWBoard.cgi intext:&quot;detailed debugging information&quot;
inurl:csCreatePro.cgi
inurl:current_frame=
inurl:curriculum.php?id=
inurl:data
inurl:date=
inurl:declaration_more.php?decl_id=
inurl:default.asp intitle:&quot;WebCommander&quot;
inurl:detail.php?ID=
inurl:detail=
inurl:dir=
inurl:display=
inurl:download
inurl:download.php?id=
inurl:download=
inurl:downloads_info.php?id=
inurl:ds.py
inurl:email filetype:mdb
inurl:event.php?id=
inurl:exchweb/bin/auth/owalogon.asp
inurl:f=
inurl:faq2.php?id=
inurl:fcgi-bin/echo
inurl:fellows.php?id=
inurl:fiche_spectacle.php?id=
inurl:file
inurl:file=
inurl:fileinclude=
inurl:filename=
inurl:filezilla.xml -cvs
inurl:firm_id=
inurl:footer.inc.php
inurl:forum
inurl:forum filetype:mdb
inurl:forum_bds.php?num=
inurl:forward filetype:forward -cvs
inurl:g=
inurl:galeri_info.php?l=
inurl:gallery.php?id=
inurl:game.php?id=
inurl:games.php?id=
inurl:getdata=
inurl:getmsg.html intitle:hotmail
inurl:gnatsweb.pl
inurl:go=
inurl:historialeer.php?num=
inurl:home
inurl:home.php?pagina=
inurl:hosting_info.php?id=
inurl:hp/device/this.LCDispatcher
inurl:HT=
inurl:html
inurl:htpasswd filetype:htpasswd
inurl:humor.php?id=
inurl:idd=
inurl:ids5web
inurl:iisadmin
inurl:inc
inurl:inc=
inurl:incfile=
inurl:incl=
inurl:include_file=
inurl:include_path=
inurl:index.cgi?aktion=shopview
inurl:index.php?=
inurl:index.php?conteudo=
inurl:index.php?id=
inurl:index.php?load=
inurl:index.php?opcao=
inurl:index.php?principal=
inurl:index.php?show=
inurl:index2.php?option=
inurl:index2.php?to=
inurl:indexFrame.shtml Axis
inurl:infile=
inurl:info
inurl:info.inc.php
inurl:info=
inurl:iniziativa.php?in=
inurl:ir=
inurl:irc filetype:cgi cgi:irc
inurl:item_id=
inurl:kategorie.php4?id=
inurl:labels.php?id=
inurl:lang=
inurl:language=
inurl:lilo.conf filetype:conf password -tatercounter2000 -bootpwd -man
inurl:link=
inurl:list
inurl:load=
inurl:loadpsb.php?id=
inurl:log.nsf -gov
inurl:login filetype:swf swf
inurl:login.asp
inurl:login.cfm
inurl:login.jsp.bak
inurl:login.php &quot;SquirrelMail version&quot;
inurl:look.php?ID=
inurl:mail
inurl:main.php phpMyAdmin
inurl:main.php Welcome to phpMyAdmin
inurl:main.php?id=
inurl:main=
inurl:mainspot=
inurl:ManyServers.htm
inurl:material.php?id=
inurl:memberInfo.php?id=
inurl:metaframexp/default/login.asp | intitle:&quot;Metaframe XP Login&quot;
inurl:mewebmail
inurl:midicart.mdb
inurl:msg=
inurl:names.nsf?opendatabase
inurl:netscape.hst
inurl:netscape.ini
inurl:netw_tcp.shtml
inurl:new
inurl:news_display.php?getid=
inurl:news_view.php?id=
inurl:news-full.php?id=
inurl:news.php?id=
inurl:newscat.php?id=
inurl:newsdesk.cgi? inurl:&quot;t=&quot;
inurl:newsDetail.php?id=
inurl:newsid=
inurl:newsitem.php?num=
inurl:newsone.php?id=
inurl:newsticker_info.php?idn=
inurl:nuke filetype:sql
inurl:num=
inurl:ocw_login_username
inurl:odbc.ini ext:ini -cvs
inurl:offer.php?idf=
inurl:ogl_inet.php?ogl_id=
inurl:openfile=
inurl:opinions.php?id=
inurl:orasso.wwsso_app_admin.ls_login
inurl:order
inurl:ospfd.conf intext:password -sample -test -tutorial -download
inurl:ovcgi/jovw
inurl:p=
inurl:page.php?file=
inurl:page.php?id=
inurl:page=
inurl:pageid=
inurl:Pageid=
inurl:pages
inurl:pages.php?id=
inurl:pagina=
inurl:pap-secrets -cvs
inurl:participant.php?id=
inurl:pass.dat
inurl:passlist.txt
inurl:path_to_calendar=
inurl:path=
inurl:perform filetype:ini
inurl:perform.ini filetype:ini
inurl:perl/printenv
inurl:person.php?id=
inurl:pg=
inurl:php.ini filetype:ini
inurl:phpSysInfo/ &quot;created by phpsysinfo&quot;
inurl:play_old.php?id=
inurl:pls/admin_/gateway.htm
inurl:pop.php?id=
inurl:portscan.php &quot;from Port&quot;|&quot;Port Range&quot;
inurl:post.php?id=
inurl:postfixadmin intitle:&quot;postfix admin&quot; ext:php
inurl:preferences.ini &quot;[emule]&quot;
inurl:preview.php?id=
inurl:prod_detail.php?id=
inurl:prod_info.php?id=
inurl:product_ranges_view.php?ID=
inurl:product-item.php?id=
inurl:product.php?id=
inurl:product.php?mid=
inurl:productdetail.php?id=
inurl:productinfo.php?id=
inurl:Productinfo.php?id=
inurl:produit.php?id=
inurl:profile_view.php?id=
inurl:profiles filetype:mdb
inurl:proxy | inurl:wpad ext:pac | ext:dat findproxyforurl
inurl:Proxy.txt
inurl:public
inurl:publications.php?id=
inurl:qry_str=
inurl:ray.php?id=
inurl:read.php?=
inurl:read.php?id=
inurl:readnews.php?id=
inurl:reagir.php?num=
inurl:releases.php?id=
inurl:report &quot;EVEREST Home Edition &quot;
inurl:review.php?id=
inurl:rpSys.html
inurl:rub.php?idr=
inurl:rubp.php?idr=
inurl:rubrika.php?idr=
inurl:ruta=
inurl:safehtml=
inurl:search
inurl:search.php vbulletin
inurl:search/admin.php
inurl:secring ext:skr | ext:pgp | ext:bak
inurl:section.php?id=
inurl:section=
inurl:select_biblio.php?id=
inurl:sem.php3?id=
inurl:server-info &quot;Apache Server Information&quot;
inurl:server-status &quot;apache&quot;
inurl:server.cfg rcon password
inurl:servlet/webacc
inurl:shop
inurl:shop_category.php?id=
inurl:shop.php?do=part&amp;amp;amp;id=
inurl:shopdbtest.asp
inurl:shopping.php?id=
inurl:show_an.php?id=
inurl:show.php?id=
inurl:showfile=
inurl:showimg.php?id=
inurl:shredder-categories.php?id=
inurl:side=
inurl:site_id=
inurl:skin=
inurl:snitz_forums_2000.mdb
inurl:software
inurl:spr.php?id=
inurl:sql.php?id=
inurl:ssl.conf filetype:conf
inurl:staff_id=
inurl:static=
inurl:statrep.nsf -gov
inurl:status.cgi?host=all
inurl:story.php?id=
inurl:str=
inurl:Stray-Questions-View.php?num=
inurl:strona=
inurl:sub=
inurl:support
inurl:sw_comment.php?id=
inurl:tdbin
inurl:tekst.php?idt=
inurl:testcgi xitami
inurl:textpattern/index.php
inurl:theme.php?id=
inurl:title.php?id=
inurl:top10.php?cat=
inurl:tradeCategory.php?id=
inurl:trainers.php?id=
inurl:transcript.php?id=
inurl:tresc=
inurl:url=
inurl:user
inurl:user=
inurl:vbstats.php &quot;page generated&quot;
inurl:ventrilo_srv.ini adminpassword
inurl:view_ad.php?id=
inurl:view_faq.php?id=
inurl:view_product.php?id=
inurl:view.php?id=
inurl:view/index.shtml
inurl:view/indexFrame.shtml
inurl:view/view.shtml
inurl:viewapp.php?id=
inurl:ViewerFrame?Mode=Refresh
inurl:viewphoto.php?id=
inurl:viewshowdetail.php?id=
inurl:vtund.conf intext:pass -cvs
inurl:vtund.conf intext:pass -cvs s
inurl:WCP_USER
inurl:web
inurl:webalizer filetype:png -.gov -.edu -.mil -opendarwin
inurl:webmail./index.pl &quot;Interface&quot;
inurl:website.php?id=
inurl:webutil.pl
inurl:webvpn.html &quot;login&quot; &quot;Please enter your&quot;
inurl:webvpn.html &quot;login&quot; &quot;Please enter your&quot; Login (&quot;admin account info&quot;) filetype:log
inurl:wp-mail.php + &quot;There doesn't seem to be any new mail.&quot;
inurl:XcCDONTS.asp
inurl:yapboz_detay.asp
inurl:yapboz_detay.asp + View Webcam User Accessing
inurl:zebra.conf intext:password -sample -test -tutorial -download
ipsec.conf
ipsec.secrets
irbeautina/product_detail.php?product_id=
item_book.php?CAT=
item_details.php?catid=
item_list.php?cat_id=
item_list.php?maingroup
item_show.php?code_no=
item_show.php?id=
item_show.php?lid=
item.php?eid=
item.php?id=
item.php?iid=
item.php?item_id=
item.php?itemid=
item.php?model=
item.php?prodtype=
item.php?shopcd=
item.php?sub_id=
item/detail.php?num=
itemDesc.php?CartId=
itemdetail.php?item=
itemdetails.php?catalogid=
Jetbox One CMS Ã¢?Â¢&quot; | &quot;
Jetstream ? *&quot;)
kategorie.php4?id=
kboard/kboard.php?board=
KM/BOARD/readboard.php?id=
knowledge_base/detail.php?id=
kshop/product.php?productid=
layout.php?abre=
layout.php?action=
layout.php?addr=
layout.php?basepath=
layout.php?c=
layout.php?category=
layout.php?chapter=
layout.php?choix=
layout.php?cmd=
layout.php?cont=
layout.php?disp=
layout.php?g=
layout.php?goto=
layout.php?incl=
layout.php?ir=
layout.php?link=
layout.php?loader=
layout.php?menue=
layout.php?modo=
layout.php?my=
layout.php?nivel=
layout.php?numero=
layout.php?oldal=
layout.php?opcion=
layout.php?OpenPage=
layout.php?page=
layout.php?pageweb=
layout.php?pagina=
layout.php?panel=
layout.php?path=
layout.php?play=
layout.php?pollname=
layout.php?pref=
layout.php?qry=
layout.php?secao=
layout.php?section=
layout.php?seite=
layout.php?sekce=
layout.php?strona=
layout.php?thispage=
layout.php?tipo=
layout.php?url=
layout.php?var=
layout.php?where=
layout.php?xlink=
layout.php?z=
LeapFTP intitle:&quot;index.of./&quot; sites.ini modified
learnmore.php?cartID=
lib/gore.php?libpath=
library.php?cat=
Link Department&quot;
links.php?catid=
list.php?bookid=
List.php?CatID=
listcategoriesandproducts.php?idCategory=
listing.php?cat=
liveapplet
lmsrecords_cd.php?cdid=
loadpsb.php?id=
Login (&quot;
login.php?dir=
Looking Glass
ls.php?id=
m_view.php?ps_db=
m2f/m2f_phpbb204.php?m2f_root_path=
magazin.php?cid=
magazine-details.php?magid=
magazines/adult_magazine_full_year.php?magid=
magazines/adult_magazine_single_page.php?magid=
mail filetype:csv -site:gov intext:name
main.php?action=
main.php?addr=
main.php?adresa=
main.php?basepath=
main.php?body=
main.php?category=
main.php?chapter=
main.php?content=
main.php?corpo=
main.php?dir=
main.php?disp=
main.php?doshow=
main.php?e=
main.php?eval=
main.php?filepath=
main.php?goto=
main.php?h=
main.php?id=
main.php?inc=
main.php?include=
main.php?index=
main.php?ir=
main.php?item=
main.php?itemnav=
main.php?j=
main.php?link=
main.php?load=
main.php?loc=
main.php?middle=
main.php?mod=
main.php?my=
main.php?name=
main.php?oldal=
main.php?opcion=
main.php?page=
main.php?pagina=
main.php?param=
main.php?path=
main.php?pg=
main.php?pname=
main.php?pre=
main.php?pref=
main.php?prodID=
main.php?r=
main.php?ref=
main.php?second=
main.php?section=
main.php?site=
main.php?start=
main.php?str=
main.php?strona=
main.php?subject=
main.php?thispage=
main.php?tipo=
main.php?type=
main.php?url=
main.php?v=
main.php?where=
main.php?x=
main.php?xlink=
main/index.php?action=
main/index.php?uid=
main/magpreview.php?id=
mall/more.php?ProdID=
master.passwd
mb_showtopic.php?topic_id=
mboard/replies.php?parent_id=
media.php?page=
media/pr.php?id=
melbourne_details.php?id=
memberInfo.php?id=
Merak Mail Server Software&quot; -.gov -.mil -.edu -site:merakmailserver.com
message/comment_threads.php?postID=
Microsoft Money Data Files
Midmart Messageboard&quot; &quot;Administrator Login&quot;
mod*.php?action=
mod*.php?addr=
mod*.php?b=
mod*.php?channel=
mod*.php?chapter=
mod*.php?choix=
mod*.php?cont=
mod*.php?content=
mod*.php?corpo=
mod*.php?d=
mod*.php?destino=
mod*.php?dir=
mod*.php?ev=
mod*.php?goFile=
mod*.php?home=
mod*.php?incl=
mod*.php?include=
mod*.php?index=
mod*.php?ir=
mod*.php?j=
mod*.php?lang=
mod*.php?link=
mod*.php?m=
mod*.php?middle=
mod*.php?module=
mod*.php?numero=
mod*.php?oldal=
mod*.php?OpenPage=
mod*.php?pag=
mod*.php?pageweb=
mod*.php?pagina=
mod*.php?path=
mod*.php?pg=
mod*.php?phpbb_root_path=
mod*.php?play=
mod*.php?pname=
mod*.php?pre=
mod*.php?qry=
mod*.php?recipe=
mod*.php?secao=
mod*.php?secc=
mod*.php?seccion=
mod*.php?section=
mod*.php?sekce=
mod*.php?start=
mod*.php?strona=
mod*.php?thispage=
mod*.php?tipo=
mod*.php?to=
mod*.php?v=
mod*.php?var=
modline.php?id=
module_db.php?pivot_path=
module/range/dutch_windmill_collection.php?rangeId=
modules.php?****=
modules.php?bookid=
modules/AllMyGuests/signin.php?_AMGconfig[cfg_serverpath]=
modules/content/index.php?id=
modules/coppermine/themes/coppercop/theme.php?THEME_DIR=
modules/forum/index.php?topic_id=
modules/My_eGallery/index.php?basepath=
modules/vwar/admin/admin.php?vwar_root=
Monster Top List&quot; MTL numrange:200-
more_detail.php?id=
more_detail.php?X_EID=
More_Details.php?id=
more_details.php?id=
mt-db-pass.cgi files
mwchat/libs/start_lobby.php?CONFIG[MWCHAT_Libs]=
myaccount.php?catid=
myevent.php?myevent_path=
MYSQL error message: supplied argument....
mysql error with query
mysql history files
MySQL tabledata dumps
mystuff.xml - Trillian data files
n_replyboard.php?typeboard=
naboard/memo.php?bd=
natterchat inurl:home.asp -site:natterchat.co.uk
Netscape Application Server Error page
news_and_notices.php?news_id=
news_content.php?CategoryID=
news_detail.php?file=
news_item.php?id=
news_view.php?id=
news.php?id=
news.php?ID=
news.php?t=
news.php?type=
news/detail.php?id=
news/latest_news.php?cat_id=
news/news.php?id=
news/news/title_show.php?id=
news/newsitem.php?newsID=
news/newsletter.php?id=
news/shownewsarticle.php?articleid=
news/temp.php?id=
newsDetail.php?id=
newsite/pdf_show.php?id=
newsitem.php?newsid=
newsitem.php?newsID=
newsItem.php?newsId=
newsitem.php?num=
newsone.php?id=
NickServ registration passwords
nota.php?abre=
nota.php?adresa=
nota.php?b=
nota.php?base_dir=
nota.php?basepath=
nota.php?category=
nota.php?channel=
nota.php?chapter=
nota.php?cmd=
nota.php?content=
nota.php?corpo=
nota.php?destino=
nota.php?disp=
nota.php?doshow=
nota.php?eval=
nota.php?filepath=
nota.php?get=
nota.php?goFile=
nota.php?h=
nota.php?header=
nota.php?home=
nota.php?in=
nota.php?inc=
nota.php?include=
nota.php?ir=
nota.php?itemnav=
nota.php?ki=
nota.php?lang=
nota.php?left=
nota.php?link=
nota.php?m=
nota.php?mid=
nota.php?mod=
nota.php?modo=
nota.php?module=
nota.php?n=
nota.php?nivel=
nota.php?oldal=
nota.php?opcion=
nota.php?OpenPage=
nota.php?option=
nota.php?pag=
nota.php?pagina=
nota.php?panel=
nota.php?pg=
nota.php?play=
nota.php?pollname=
nota.php?pr=
nota.php?pre=
nota.php?qry=
nota.php?rub=
nota.php?sec=
nota.php?secc=
nota.php?seccion=
nota.php?second=
nota.php?seite=
nota.php?sekce=
nota.php?showpage=
nota.php?subject=
nota.php?t=
nota.php?tipo=
nota.php?url=
nota.php?v=
noticias.php?arq=
notify/notify_form.php?topic_id=
Novell NetWare intext:&quot;netware management portal version&quot;
nurl:/admin/login.asp
nyheder.htm?show=
obio/detail.php?id=
ogl_inet.php?ogl_id=
ogloszenia/rss.php?cat=
old_reports.php?file=
onlinesales/product.php?product_id=
opinions.php?id=
ORA-00921: unexpected end of SQL command
ORA-00936: missing expression
order.asp?lotid=
order.php?BookID=
order.php?id=
order.php?item_ID=
OrderForm.php?Cart=
ourblog.php?categoryid=
Outlook Web Access (a better way)
ov_tv.php?item=
OWA Public Folders (direct view)
packages_display.php?ref=
padrao.php?*[*]*=
padrao.php?*root*=
padrao.php?a=
padrao.php?abre=
padrao.php?addr=
padrao.php?base_dir=
padrao.php?basepath=
padrao.php?body=
padrao.php?c=
padrao.php?choix=
padrao.php?cont=
padrao.php?corpo=
padrao.php?d=
padrao.php?destino=
padrao.php?eval=
padrao.php?filepath=
padrao.php?h=
padrao.php?header=
padrao.php?incl=
padrao.php?index=
padrao.php?ir=
padrao.php?link=
padrao.php?loc=
padrao.php?menu=
padrao.php?menue=
padrao.php?mid=
padrao.php?middle=
padrao.php?n=
padrao.php?name=
padrao.php?nivel=
padrao.php?oldal=
padrao.php?op=
padrao.php?open=
padrao.php?OpenPage=
padrao.php?pag=
padrao.php?page=
padrao.php?path=
padrao.php?pname=
padrao.php?pre=
padrao.php?qry=
padrao.php?read=
padrao.php?redirect=
padrao.php?rub=
padrao.php?secao=
padrao.php?secc=
padrao.php?seccion=
padrao.php?section=
padrao.php?seite=
padrao.php?sekce=
padrao.php?sivu=
padrao.php?str=
padrao.php?strona=
padrao.php?subject=
padrao.php?texto=
padrao.php?tipo=
padrao.php?type=
padrao.php?u=
padrao.php?url=
padrao.php?var=
padrao.php?xlink=
page.php?*[*]*=
page.php?abre=
page.php?action=
page.php?addr=
page.php?adresa=
page.php?area_id=
page.php?base_dir=
page.php?chapter=
page.php?choix=
page.php?cmd=
page.php?cont=
page.php?doc=
page.php?e=
page.php?ev=
page.php?eval=
page.php?file=
page.php?g=
page.php?go=
page.php?goto=
page.php?id=
page.php?inc=
page.php?incl=
page.php?ir=
page.php?left=
page.php?link=
page.php?load=
page.php?loader=
page.php?mid=
page.php?middle=
page.php?mod=
page.php?modo=
page.php?modul=
page.php?module=
page.php?numero=
page.php?oldal=
page.php?OpenPage=
page.php?option=
page.php?p=
page.php?pa=
page.php?panel=
page.php?PartID=
page.php?phpbb_root_path=
page.php?pId=
page.php?pname=
page.php?pref=
page.php?q=
page.php?qry=
page.php?read=
page.php?recipe=
page.php?redirect=
page.php?secao=
page.php?section=
page.php?seite=
page.php?showpage=
page.php?sivu=
page.php?strona=
page.php?subject=
page.php?tipo=
page.php?url=
page.php?where=
page.php?z=
page/de/produkte/produkte.php?prodID=
page/venue.php?id=
pageid=
pages.php?ID=
pages.php?id=
pages.php?page=
pages/print.php?id=
pages/video.php?id=
Pages/whichArticle.php?id=
pagina.php?base_dir=
pagina.php?basepath=
pagina.php?category=
pagina.php?channel=
pagina.php?chapter=
pagina.php?choix=
pagina.php?cmd=
pagina.php?dir=
pagina.php?ev=
pagina.php?filepath=
pagina.php?g=
pagina.php?go=
pagina.php?goto=
pagina.php?header=
pagina.php?home=
pagina.php?id=
pagina.php?in=
pagina.php?incl=
pagina.php?include=
pagina.php?index=
pagina.php?ir=
pagina.php?k=
pagina.php?lang=
pagina.php?left=
pagina.php?link=
pagina.php?load=
pagina.php?loader=
pagina.php?loc=
pagina.php?mid=
pagina.php?middlePart=
pagina.php?modo=
pagina.php?my=
pagina.php?n=
pagina.php?nivel=
pagina.php?numero=
pagina.php?oldal=
pagina.php?OpenPage=
pagina.php?pagina=
pagina.php?panel=
pagina.php?path=
pagina.php?pr=
pagina.php?pre=
pagina.php?q=
pagina.php?read=
pagina.php?recipe=
pagina.php?ref=
pagina.php?sec=
pagina.php?secao=
pagina.php?seccion=
pagina.php?section=
pagina.php?sekce=
pagina.php?start=
pagina.php?str=
pagina.php?thispage=
pagina.php?tipo=
pagina.php?to=
pagina.php?type=
pagina.php?u=
pagina.php?v=
pagina.php?z=
participant.php?id=
passlist
passlist.txt (a better way)
passwd
passwd / etc (reliable)
past-event.php?id=
path.php?*[*]*=
path.php?action=
path.php?addr=
path.php?adresa=
path.php?body=
path.php?category=
path.php?channel=
path.php?chapter=
path.php?cmd=
path.php?destino=
path.php?disp=
path.php?doshow=
path.php?ev=
path.php?eval=
path.php?filepath=
path.php?goto=
path.php?header=
path.php?home=
path.php?id=
path.php?in=
path.php?incl=
path.php?ir=
path.php?left=
path.php?link=
path.php?load=
path.php?loader=
path.php?menue=
path.php?mid=
path.php?middle=
path.php?middlePart=
path.php?my=
path.php?nivel=
path.php?numero=
path.php?opcion=
path.php?option=
path.php?p=
path.php?pageweb=
path.php?panel=
path.php?path=
path.php?play=
path.php?pname=
path.php?pre=
path.php?pref=
path.php?qry=
path.php?recipe=
path.php?sec=
path.php?secao=
path.php?sivu=
path.php?sp=
path.php?start=
path.php?strona=
path.php?subject=
path.php?thispage=
path.php?tipo=
path.php?type=
path.php?var=
path.php?where=
path.php?xlink=
path.php?y=
payment.php?CartID=
pdetail.php?item_id=
pdf_post.php?ID=
people.lst
Peoples MSN contact lists
person.php?id=
pharmaxim/category.php?cid=
photogallery.php?id=
PhotoPost PHP Upload
PHP application warnings failing &quot;include_path&quot;
php-addressbook &quot;This is the addressbook for *&quot; -warning
php/event.php?id=
php/index.php?id=
PHPhotoalbum Statistics
PHPhotoalbum Upload
phpOpenTracker&quot; Statistics
phpwcms/include/inc_ext/spaw/dialogs/table.php?spaw_root=
phpx?PageID
picgallery/category.php?cid=
pivot/modules/module_db.php?pivot_path=
play_old.php?id=
Please enter a valid password! inurl:polladmin
podcast/item.php?pid=
poem_list.php?bookID=
ponuky/item_show.php?ID=
pop.php?id=
port.php?content=
portafolio/portafolio.php?id=
post.php?id=
powersearch.php?CartId=
press_release.php?id=
press.php?*[*]*=
press.php?*root*=
press.php?abre=
press.php?addr=
press.php?base_dir=
press.php?category=
press.php?channel=
press.php?destino=
press.php?dir=
press.php?ev=
press.php?get=
press.php?goFile=
press.php?home=
press.php?i=
press.php?id=
press.php?inc=
press.php?incl=
press.php?include=
press.php?ir=
press.php?itemnav=
press.php?lang=
press.php?link=
press.php?loader=
press.php?menu=
press.php?mid=
press.php?middle=
press.php?modo=
press.php?module=
press.php?my=
press.php?nivel=
press.php?opcion=
press.php?OpenPage=
press.php?option=
press.php?pa=
press.php?page=
press.php?pageweb=
press.php?pagina=
press.php?panel=
press.php?param=
press.php?path=
press.php?pg=
press.php?pname=
press.php?pr=
press.php?pref=
press.php?redirect=
press.php?rub=
press.php?second=
press.php?seite=
press.php?strona=
press.php?subject=
press.php?t=
press.php?thispage=
press.php?to=
press.php?type=
press.php?where=
press.php?xlink=
prev_results.php?prodID=
preview.php?id=
price.php
principal.php?abre=
principal.php?addr=
principal.php?b=
principal.php?basepath=
principal.php?choix=
principal.php?cont=
principal.php?conteudo=
principal.php?corpo=
principal.php?d=
principal.php?destino=
principal.php?disp=
principal.php?ev=
principal.php?eval=
principal.php?f=
principal.php?filepath=
principal.php?goto=
principal.php?header=
principal.php?home=
principal.php?id=
principal.php?in=
principal.php?inc=
principal.php?index=
principal.php?ir=
principal.php?ki=
principal.php?l=
principal.php?left=
principal.php?link=
principal.php?load=
principal.php?loader=
principal.php?loc=
principal.php?menue=
principal.php?middle=
principal.php?middlePart=
principal.php?module=
principal.php?my=
principal.php?n=
principal.php?nivel=
principal.php?oldal=
principal.php?opcion=
principal.php?p=
principal.php?pag=
principal.php?pagina=
principal.php?param=
principal.php?phpbb_root_path=
principal.php?pollname=
principal.php?pr=
principal.php?pre=
principal.php?pref=
principal.php?q=
principal.php?read=
principal.php?recipe=
principal.php?ref=
principal.php?rub=
principal.php?s=
principal.php?secc=
principal.php?seccion=
principal.php?seite=
principal.php?strona=
principal.php?subject=
principal.php?tipo=
principal.php?to=
principal.php?type=
principal.php?url=
principal.php?viewpage=
principal.php?w=
principal.php?z=
print-story.php?id=
print.php?*root*=
print.php?addr=
print.php?base_dir=
print.php?basepath=
print.php?category=
print.php?chapter=
print.php?choix=
print.php?cont=
print.php?dir=
print.php?disp=
print.php?doshow=
print.php?g=
print.php?goFile=
print.php?goto=
print.php?header=
print.php?id=
print.php?ID=
print.php?in=
print.php?inc=
print.php?itemnav=
print.php?ki=
print.php?l=
print.php?left=
print.php?link=
print.php?loc=
print.php?menu=
print.php?menue=
print.php?middle=
print.php?middlePart=
print.php?module=
print.php?my=
print.php?name=
print.php?numero=
print.php?opcion=
print.php?open=
print.php?OpenPage=
print.php?option=
print.php?pag=
print.php?page=
print.php?param=
print.php?path=
print.php?play=
print.php?pname=
print.php?pollname=
print.php?pre=
print.php?r=
print.php?read=
print.php?rub=
print.php?s=
print.php?sekce=
print.php?sid=
print.php?sivu=
print.php?sp=
print.php?str=
print.php?strona=
print.php?thispage=
print.php?tipo=
print.php?type=
print.php?u=
print.php?where=
printcards.php?ID=
privacy.php?cartID=
private key files (.csr)
private key files (.key)
prod_detail.php?id=
prod_info.php?id=
prod.php?cat=
prodbycat.php?intCatalogID=
proddetails_print.php?prodid=
prodetails.php?prodid=
prodlist.php?catid=
prodotti.php?id_cat=
product_detail.php?product_id=
product_details.php?id=
product_details.php?prodid=
product_details.php?product_id=
product_info.php?id=
product_info.php?item_id=
product_info.php?products_id=
product_ranges_view.php?ID=
product-item.php?id=
product-list.php?category_id=
product-list.php?cid=
product-list.php?id=
product-range.php?rangeID=
product.php?****=
product.php?bid=
product.php?bookID=
product.php?cat=
product.php?id_h=
product.php?id=
product.php?intProdID=
product.php?intProductID=
product.php?ItemID=
product.php?ItemId=
product.php?pid=
product.php?prd=
product.php?prodid=
product.php?product_id=
product.php?product=
product.php?ProductID=
product.php?productid=
product.php?shopprodid=
product.php?sku=
product/detail.php?id=
product/list.php?pid=
product/product.php?cate=
product/product.php?product_no=
productdetail.php?id=
productDetails.php?idProduct=
productDisplay.php
productinfo.php?id=
productinfo.php?item=
productList.php?cat=
productlist.php?fid=
productlist.php?grpid=
productlist.php?id=
ProductList.php?id=
productList.php?id=
productlist.php?tid=
productlist.php?ViewType=Category&amp;amp;amp;CategoryID=
productpage.php
products_category.php?CategoryID=
products_detail.php?CategoryID=
products-display-details.php?prodid=
products.php?act=
products.php?cat_id=
products.php?cat=
products.php?categoryID=
products.php?catid=
products.php?DepartmentID=
products.php?groupid=
products.php?ID=
products.php?keyword=
products.php?openparent=
products.php?p=
products.php?rub=
products.php?type=
products/?catID=
products/Blitzball.htm?id=
products/card.php?prodID=
products/index.php?rangeid=
products/parts/detail.php?id=
products/product-list.php?id=
products/product.php?id=
products/product.php?pid=
products/products.php?p=
productsByCategory.php?intCatalogID=
productsview.php?proid=
produit.php?id=
prodView.php?idProduct=
profile_print.php?id=
profile_view.php?id=
profile.php?id=
profiles/profile.php?profileid=
projdetails.php?id=
projects/event.php?id=
promo.php?id=
promotion.php?catid=
properties.php?id_cat=
property.php?id=
psyBNC config files
psychology/people/detail.php?id=
pub/pds/pds_view.php?start=
publications.php?Id=
publications.php?id=
publications.php?ID=
publications/book_reviews/full_review.php?id=
publications/publication.php?id=
publications/view.php?id=
purelydiamond/products/category.php?cat=
pview.php?Item=
pwd.db
pylones/item.php?item=
questions.php?questionid=
Quicken data files
rating.php?id=
rating/stat.php?id=
ray.php?id=
rdbqds -site:.edu -site:.mil -site:.gov
read.php?id=
readnews.php?id=
reagir.php?num=
recipe/category.php?cid=
redaktion/whiteteeth/detail.php?nr=
RedKernel&quot;
referral/detail.php?siteid=
releases_headlines_details.php?id=
releases.php?id=
remixer.php?id=
reply.php?id=
resellers.php?idCategory=
resources/detail.php?id=
resources/index.php?cat=
resources/vulnerabilities_list.php?id=
results.php?cat=
review.php?id=
review/review_form.php?item_id=
reviews.php?id=
robots.txt
rounds-detail.php?id=
rss.php?cat=
rss/event.php?id=
rtfe.php?siteid=
rub.php?idr=
s.php?w=
Sales/view_item.php?id=
savecart.php?CartId=
schule/termine.php?view=
search.php?CartID=
search.php?cutepath=
search/display.php?BookID=
searchcat.php?search_id=
section.php?id=
section.php?section=
select_biblio.php?id=
Select_Item.php?id=
sem.php3?id=
send_reminders.php?includedir=
server-dbs &quot;intitle:index of&quot;
Services.php?ID=
services.php?page=
shippinginfo.php?CartId=
shop_category.php?id=
shop_details.php?prodid=
shop_display_products.php?cat_id=
shop.php?a=
shop.php?action=
shop.php?bookid=
shop.php?cartID=
shop.php?do=part&amp;amp;amp;id=
shop/books_detail.php?bookID=
shop/category.php?cat_id=
shop/eventshop/product_detail.php?itemid=
Shop/home.php?cat=
shop/home.php?cat=
shop/index.php?cPath=
shopaddtocart.php
shopaddtocart.php?catalogid=
shopbasket.php?bookid=
shopbycategory.php?catid=
shopcafe-shop-product.php?bookId=
shopcart.php?title=
shopcreatorder.php
shopcurrency.php?cid=
shopdc.php?bookid=
shopdisplaycategories.php
shopdisplayproduct.php?catalogid=
shopdisplayproducts.php
shopexd.php
shopexd.php?catalogid=
shopping_basket.php?cartID=
shopping.php?id=
shopprojectlogin.php
shopquery.php?catalogid=
shopremoveitem.php?cartid=
shopreviewadd.php?id=
shopreviewlist.php?id=
ShopSearch.php?CategoryID=
shoptellafriend.php?id=
shopthanks.php
shopwelcome.php?title=
show_an.php?id=
show_bug.cgi?id=
show_item_details.php?item_id=
show_item.php?id=
show_news.php?cutepath=
show-book.php?id=
show.php?*root*=
show.php?abre=
show.php?adresa=
show.php?b=
show.php?base_dir=
show.php?channel=
show.php?chapter=
show.php?cmd=
show.php?corpo=
show.php?d=
show.php?disp=
show.php?filepath=
show.php?get=
show.php?go=
show.php?header=
show.php?home=
show.php?id=
show.php?inc=
show.php?incl=
show.php?include=
show.php?index=
show.php?ir=
show.php?j=
show.php?ki=
show.php?l=
show.php?left=
show.php?loader=
show.php?m=
show.php?mid=
show.php?middlePart=
show.php?modo=
show.php?module=
show.php?my=
show.php?n=
show.php?nivel=
show.php?oldal=
show.php?page=
show.php?pageweb=
show.php?pagina=
show.php?param=
show.php?path=
show.php?play=
show.php?pname=
show.php?pre=
show.php?qry=
show.php?r=
show.php?read=
show.php?recipe=
show.php?redirect=
show.php?seccion=
show.php?second=
show.php?sp=
show.php?thispage=
show.php?to=
show.php?type=
show.php?x=
show.php?xlink=
show.php?z=
showbook.php?bookid=
showfeature.php?id=
showimg.php?id=
showproduct.php?cat=
showproduct.php?prodid=
showproduct.php?productId=
showStore.php?catID=
showsub.php?id=
shprodde.php?SKU=
shredder-categories.php?id=
signin filetype:url
sinformer/n/imprimer.php?id=
singer/detail.php?siteid=
site:.pk intext:Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in &amp;amp;amp; “id”
site:.pk intext:Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in &amp;amp;amp; “id”
site:edu admin grades
site:netcraft.com intitle:That.Site.Running Apache
site:www.mailinator.com inurl:ShowMail.do
site.php?id=
site/?details&amp;amp;amp;prodid=
site/en/list_service.php?cat=
site/products.php?prodid=
sitebuildercontent
sitebuilderfiles
sitebuilderpictures
sitio.php?*root*=
sitio.php?abre=
sitio.php?addr=
sitio.php?body=
sitio.php?category=
sitio.php?chapter=
sitio.php?content=
sitio.php?destino=
sitio.php?disp=
sitio.php?doshow=
sitio.php?e=
sitio.php?ev=
sitio.php?get=
sitio.php?go=
sitio.php?goFile=
sitio.php?inc=
sitio.php?incl=
sitio.php?index=
sitio.php?ir=
sitio.php?left=
sitio.php?menu=
sitio.php?menue=
sitio.php?mid=
sitio.php?middlePart=
sitio.php?modo=
sitio.php?name=
sitio.php?nivel=
sitio.php?oldal=
sitio.php?opcion=
sitio.php?option=
sitio.php?pageweb=
sitio.php?param=
sitio.php?pg=
sitio.php?pr=
sitio.php?qry=
sitio.php?r=
sitio.php?read=
sitio.php?recipe=
sitio.php?redirect=
sitio.php?rub=
sitio.php?sec=
sitio.php?secao=
sitio.php?secc=
sitio.php?section=
sitio.php?sivu=
sitio.php?sp=
sitio.php?start=
sitio.php?strona=
sitio.php?t=
sitio.php?texto=
sitio.php?tipo=
sitio/item.php?idcd=
skins/advanced/advanced1.php?pluginpath[0]=
skunkworks/content.php?id=
smarty_config.php?root_dir=
Snitz! forums db path error
socsci/events/full_details.php?id=
socsci/news_items/full_story.php?id=
software_categories.php?cat_id=
solpot.html?body=
sources/join.php?FORM[url]=owned&amp;amp;amp;CONFIG[captcha]=1&amp;amp;amp;CONFIG[path]=
specials.php?id=
specials.php?osCsid=
sport.php?revista=
spr.php?id=
spwd.db / passwd
SQL data dumps
SQL syntax error
sql.php?id=
SQuery/lib/gore.php?libpath=
Squid cache server reports
staff_id=
staff/publications.php?sn=
standard.php?*[*]*=
standard.php?abre=
standard.php?action=
standard.php?base_dir=
standard.php?body=
standard.php?channel=
standard.php?chapter=
standard.php?cmd=
standard.php?cont=
standard.php?destino=
standard.php?dir=
standard.php?e=
standard.php?ev=
standard.php?eval=
standard.php?go=
standard.php?goFile=
standard.php?goto=
standard.php?home=
standard.php?in=
standard.php?include=
standard.php?index=
standard.php?j=
standard.php?lang=
standard.php?link=
standard.php?menu=
standard.php?middle=
standard.php?my=
standard.php?name=
standard.php?numero=
standard.php?oldal=
standard.php?op=
standard.php?open=
standard.php?pagina=
standard.php?panel=
standard.php?param=
standard.php?phpbb_root_path=
standard.php?pollname=
standard.php?pr=
standard.php?pre=
standard.php?pref=
standard.php?q=
standard.php?qry=
standard.php?ref=
standard.php?s=
standard.php?secc=
standard.php?seccion=
standard.php?section=
standard.php?showpage=
standard.php?sivu=
standard.php?str=
standard.php?subject=
standard.php?url=
standard.php?var=
standard.php?viewpage=
standard.php?w=
standard.php?where=
standard.php?xlink=
standard.php?z=
start.php?*root*=
start.php?abre=
start.php?addr=
start.php?adresa=
start.php?b=
start.php?base_dir=
start.php?basepath=
start.php?body=
start.php?chapter=
start.php?cmd=
start.php?corpo=
start.php?destino=
start.php?eval=
start.php?go=
start.php?header=
start.php?home=
start.php?in=
start.php?include=
start.php?index=
start.php?ir=
start.php?lang=
start.php?load=
start.php?loader=
start.php?mid=
start.php?modo=
start.php?module=
start.php?name=
start.php?nivel=
start.php?o=
start.php?oldal=
start.php?op=
start.php?option=
start.php?p=
start.php?pageweb=
start.php?panel=
start.php?param=
start.php?pg=
start.php?play=
start.php?pname=
start.php?pollname=
start.php?rub=
start.php?secao=
start.php?seccion=
start.php?seite=
start.php?showpage=
start.php?sivu=
start.php?sp=
start.php?str=
start.php?strona=
start.php?thispage=
start.php?tipo=
start.php?where=
start.php?xlink=
stat.php?id=
static.php?id=
stockists_list.php?area_id=
store_bycat.php?id=
store_listing.php?id=
Store_ViewProducts.php?Cat=
store-details.php?id=
store.php?cat_id=
store.php?id=
store/default.php?cPath=
store/description.php?iddesc=
store/home.php?cat=
store/index.php?cat_id=
store/product.php?productid=
store/view_items.php?id=
storefront.php?id=
storefronts.php?title=
storeitem.php?item=
storemanager/contents/item.php?page_code=
StoreRedirect.php?ID=
story.php?id=
Stray-Questions-View.php?num=
sub*.php?*[*]*=
sub*.php?*root*=
sub*.php?abre=
sub*.php?action=
sub*.php?adresa=
sub*.php?b=
sub*.php?base_dir=
sub*.php?basepath=
sub*.php?body=
sub*.php?category=
sub*.php?channel=
sub*.php?chapter=
sub*.php?cont=
sub*.php?content=
sub*.php?corpo=
sub*.php?destino=
sub*.php?g=
sub*.php?go=
sub*.php?goFile=
sub*.php?header=
sub*.php?id=
sub*.php?include=
sub*.php?ir=
sub*.php?itemnav=
sub*.php?j=
sub*.php?k=
sub*.php?lang=
sub*.php?left=
sub*.php?link=
sub*.php?load=
sub*.php?menue=
sub*.php?mid=
sub*.php?middle=
sub*.php?mod=
sub*.php?modo=
sub*.php?module=
sub*.php?my=
sub*.php?name=
sub*.php?oldal=
sub*.php?op=
sub*.php?open=
sub*.php?OpenPage=
sub*.php?option=
sub*.php?pa=
sub*.php?pag=
sub*.php?panel=
sub*.php?path=
sub*.php?phpbb_root_path=
sub*.php?play=
sub*.php?pname=
sub*.php?pre=
sub*.php?qry=
sub*.php?recipe=
sub*.php?rub=
sub*.php?s=
sub*.php?sec=
sub*.php?secao=
sub*.php?secc=
sub*.php?seite=
sub*.php?sp=
sub*.php?str=
sub*.php?thispage=
sub*.php?u=
sub*.php?viewpage=
sub*.php?where=
sub*.php?z=
subcategories.php?id=
summary.php?PID=
Supplied argument is not a valid PostgreSQL result
support/mailling/maillist/inc/initdb.php?absolute_path=
sw_comment.php?id=
tas/event.php?id=
tecdaten/showdetail.php?prodid=
tek9.php?
template.php?*[*]*=
template.php?a=
template.php?Action=Item&amp;amp;amp;pid=
template.php?addr=
template.php?base_dir=
template.php?basepath=
template.php?c=
template.php?choix=
template.php?cont=
template.php?content=
template.php?corpo=
template.php?dir=
template.php?doshow=
template.php?e=
template.php?f=
template.php?goto=
template.php?h=
template.php?header=
template.php?ir=
template.php?k=
template.php?lang=
template.php?left=
template.php?load=
template.php?menue=
template.php?mid=
template.php?mod=
template.php?name=
template.php?nivel=
template.php?op=
template.php?opcion=
template.php?pag=
template.php?page=
template.php?pagina=
template.php?panel=
template.php?param=
template.php?path=
template.php?play=
template.php?pre=
template.php?qry=
template.php?ref=
template.php?s=
template.php?secao=
template.php?second=
template.php?section=
template.php?seite=
template.php?sekce=
template.php?showpage=
template.php?sp=
template.php?str=
template.php?t=
template.php?texto=
template.php?thispage=
template.php?tipo=
template.php?viewpage=
template.php?where=
template.php?y=
templet.php?acticle_id=
test.php?page=
theme.php?id=
things-to-do/detail.php?id=
today.php?eventid=
tools/print.php?id=
tools/send_reminders.php?includedir=
top10.php?cat=
topic.php?ID=
toynbeestudios/content.php?id=
tradeCategory.php?id=
trailer.php?id=
trainers.php?id=
transcript.php?id=
trillian.ini
tuangou.php?bookid=
type.php?iType=
UBB.threads&quot;)|(inurl:login.php &quot;ubb&quot;)
UebiMiau&quot; -site:sourceforge.net
Ultima Online loginservers
Unreal IRCd
updatebasket.php?bookid=
updates.php?ID=
usb/devices/showdev.php?id=
veranstaltungen/detail.php?id=
video.php?content=
video.php?id=
view_author.php?id=
view_cart.php?title=
view_detail.php?ID=
view_faq.php?id=
view_item.php?id=
view_item.php?item=
view_items.php?id=
view_newsletter.php?id=
view_product.php?id=
view-event.php?id=
view.php?*[*]*=
view.php?adresa=
view.php?b=
view.php?body=
view.php?channel=
view.php?chapter=
view.php?choix=
view.php?cid=
view.php?cmd=
view.php?content=
view.php?disp=
view.php?get=
view.php?go=
view.php?goFile=
view.php?goto=
view.php?header=
view.php?id=
view.php?incl=
view.php?ir=
view.php?ki=
view.php?lang=
view.php?load=
view.php?loader=
view.php?mid=
view.php?middle=
view.php?mod=
view.php?oldal=
view.php?option=
view.php?pag=
view.php?page=
view.php?pageNum_rscomp=
view.php?panel=
view.php?pg=
view.php?phpbb_root_path=
view.php?pollname=
view.php?pr=
view.php?qry=
view.php?recipe=
view.php?redirect=
view.php?sec=
view.php?secao=
view.php?seccion=
view.php?second=
view.php?seite=
view.php?showpage=
view.php?sp=
view.php?str=
view.php?to=
view.php?type=
view.php?u=
view.php?var=
view.php?where=
view/7/9628/1.html?reply=
viewapp.php?id=
viewcart.php?CartId=
viewCart.php?userID=
viewCat_h.php?idCategory=
viewevent.php?EventID=
viewitem.php?recor=
viewphoto.php?id=
viewPrd.php?idcategory=
ViewProduct.php?misc=
viewshowdetail.php?id=
viewthread.php?tid=
voteList.php?item_ID=
wamp_dir/setup/yesno.phtml?no_url=
warning &quot;error on line&quot; php sablotron
WebLog Referrers
website.php?id=
Welcome to ntop!
whatsnew.php?idCategory=
wiki/pmwiki.php?page****=
Windows 2000 web server error messages
WsAncillary.php?ID=
WsPages.php?ID=noticiasDetalle.php?xid=
www/index.php?page=
wwwboard WebAdmin inurl:passwd.txt wwwboard|webadmin
WWWThreads&quot;)|(inurl:&quot;wwwthreads/login.php&quot;)|(inurl:&quot;wwwthreads/login.pl?Cat=&quot;)
XOOPS Custom Installation
yacht_search/yacht_view.php?pid=
YZboard/view.php?id=
zb/view.php?uid=
zentrack/index.php?configFile=
&amp;lt;/pre&amp;gt;
&amp;lt;h2&amp;gt;2019 Google Dorks List&amp;lt;/h2&amp;gt;
&amp;lt;pre&amp;gt;site:accounts.&amp;lt;em&amp;gt;.com/signin/ intitle:&quot;index of&quot; drupal intitle:&quot;index of&quot; admin inurl:login.cgi    Pages Containing Login Portals site:&amp;lt;/em&amp;gt;/joomla/administrator
 inurl:/login/index.jsp -site:hertz.*
 intitle:&quot;Index of&quot; inurl:wp-json/oembed    
 intitle:&quot;Index of&quot; phpmyadmin
 intitle:&quot;Index of&quot; wp-admin
 intitle:index.of.?.sql
 inurl: /filemanager/dialog.php
 s3 site:amazonaws.com filetype:log
 inurl:cgi/login.pl
 inurl:zoom.us/j and intext:scheduled for
 site:*/auth intitle:login
 nurl: admin/login.aspx    Pages Containing Login Portals
 &quot;Index of&quot; inurl:webalizer
 &quot;Index of&quot; inurl:phpmyadmin
 &quot;Index of&quot; inurl:htdocs inurl:xampp
 s3 site:amazonaws.com intext:dhcp filetype:txt inurl:apollo
 inurl:/index.aspx/login
 site:amazonaws.com inurl:login.php
 intitle:&quot;IIS Windows Server&quot; -inurl:&quot;IIS Windows Server&quot;
 intitle:&quot;Apache2 Ubuntu Default Page: It works&quot;    
 inurl:/filedown.php?file=
 inurl:Dashboard.jspa intext:&quot;Atlassian Jira Project Management Software&quot;
 inurl:app/kibana intext:Loading Kibana
 site:https://docs.google.com/spreadsheets edit
 inurl:8443 AND -intitle:8443 AND -intext:8443 prohibited|restricted|unauthorized
 intitle:&quot;index of&quot; unattend.xml
 inurl:/admin/index.php
 inurl:bc.googleusercontent.com intitle:index of
 inurl:office365 AND intitle:&quot;Sign In | Login | Portal&quot;
 intext:&quot;@gmail.com&quot; AND intext:&quot;@yahoo.com&quot; filetype:sql
 intitle:OmniDB intext:&quot;user. pwd. Sign in.&quot;
 intitle:&quot;qBittorrent Web UI&quot; inurl:8080
 site:com inurl:jboss filetype:log -github.com
 intitle:&quot;index of&quot; &quot;.cpanel/caches/config/&quot;
 inurl:'/scopia/entry/index.jsp'
inurl:/index.aspx/login
 intitle: &quot;index of&quot; &quot;./&quot; &quot;./bitcoin&quot;
 inurl:/portal/apis/fileExplorer/
 intitle:&quot;index of&quot; &quot;/aws.s3/&quot;
 intitle:&quot;index of&quot; hosts.csv | firewalls.csv | linux.csv | windows.csv
 intitle:Test Page for the Nginx HTTP Server on Fedora
 inurl:_cpanel/forgotpwd
 intitle:&quot;index of /&quot; intext:/backup
 intitle:&quot;Swagger UI - &quot; + &quot;Show/Hide&quot;
 site:drive.google.com /preview intext:movie inurl:flv | wmv | mp4 -pdf -edit -view
 intext:&quot;class JConfig {&quot; inurl:configuration.php
 &quot;index of&quot; &quot;database.sql.zip
&lt;/code&gt;&lt;/pre&gt;
</description>
        <pubDate>Wed, 05 Jan 2022 12:00:00 +0000</pubDate>
        <link>https://sadeceben.github.iohttps://sadeceben.github.io//blog/DORKS/</link>
        <guid isPermaLink="true">https://sadeceben.github.iohttps://sadeceben.github.io//blog/DORKS/</guid>
        
        <category>hacks</category>
        
        <category>dorks</category>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>Yazılım Tasarım Desenleri</title>
        <description>&lt;h2 id=&quot;yazilim-tasarim-mimarileri&quot;&gt;YAZILIM TASARIM MIMARILERI&lt;/h2&gt;

&lt;h3 id=&quot;dekorator-tasarim-deseni-&quot;&gt;Dekorator Tasarim Deseni :&lt;/h3&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/desing_patterns/dekaretör_senaryo.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/desing_patterns/dekaretör_uml.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;div class=&quot;language-c# highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;usingSystem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;usingSystem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Collections&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Generic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;usingSystem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Linq&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;usingSystem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;usingSystem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Threading&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Tasks&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;

&lt;span class=&quot;k&quot;&gt;namespace&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;ConsoleApp2&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;DekoratorDeseni&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;interface&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;fiyatEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisFiyat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;tanimEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisTanim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;model&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;get&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;marka&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;get&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fiyat&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;get&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tanim&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;get&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;fiyat&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;125.000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tanim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;fiyatEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisFiyat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;fiyat&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisFiyat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;tanimEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisTanim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;tanim&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Model:&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;model&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot; Marka: &quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;marka&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot; Guncel Fiyat: &quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fiyat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ToString&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot; &quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisTanim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;ArabaDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;private&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;ArabaDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;fiyatEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisFiyat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;fiyatEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;eklenmisFiyat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;tanimEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;eklenmisTanim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;tanimEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;eklenmisTanim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;camTavanDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ArabaDekorator&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;camTavanDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;fiyatEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;tanimEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;camTavan bilgisi araca eklendi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;parkSensoruDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ArabaDekorator&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;parkSensoruDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;fiyatEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;tanimEkle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;parkSensoruaraca eklendi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;base&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;//Orjinal nesne&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;model&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Polo&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;marka&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Volkswagen&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fiyat&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;125.000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tanim&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Yeni araba eklendi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;};&lt;/span&gt;
            &lt;span class=&quot;c1&quot;&gt;//Nesneye cam tavan ozelliginin eklenmesi&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;camTavanDekorator&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;camTavan&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;camTavanDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;camTavan&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
            &lt;span class=&quot;c1&quot;&gt;//Park sensoru ozelliginin eklenmesi&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;parkSensoruDekorator&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;parkSensoru&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;parkSensoruDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;parkSensoru&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;c1&quot;&gt;//Orjinal ikinci nesne&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;IAraba&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;araba2&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Araba&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;model&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;S90&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;marka&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Volvo&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fiyat&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;240.000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tanim&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Yeni araba eklendi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;};&lt;/span&gt;
            &lt;span class=&quot;c1&quot;&gt;//Park sensoru ozelliginin eklenmesi&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;parkSensoruDekorator&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;parkSensoru2&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;parkSensoruDekorator&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;araba2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;parkSensoru2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;bilgiDetaylari&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
 
       &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
 &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;proxy-deseni-&quot;&gt;Proxy Deseni :&lt;/h3&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/desing_patterns/proxy_deseni.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;div class=&quot;language-c# highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;using&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;System&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;namespace&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;ConsoleApp2&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Program&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;interface&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;INesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;private&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Sol taraftaki kapiya git\n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Proxy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;INesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Nesne&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;null&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
					&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Robot inaktif durumdadir&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
					&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;newNesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
					&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Proxy sinifirobotun istegini bulamiyor. Lutfen robotu aktif ediniz. \n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
				&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Robot aktif durumdadir&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Proxy sinifirobotun istegini belirtiyor: &quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;korumaProxy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;INesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Nesne&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sifre&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;hodor&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;dogrulama&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_s&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sifre&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Koruma Proxy: Sifre gecerli degil, erisim izni yok&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;else_nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Koruma proxy: Sifre gecerli, erisim saglandi&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;null&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Koruma proxy: Ilk olarak dogrulama islemi gerceklestirinz&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Proxy sinifirobotun istegini belirtiyor: &quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;INesne&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Proxy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;());&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;());&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;korumaProxy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;askorumaProxy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;dogrulama&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Deneme&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;((&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;askorumaProxy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;dogrulama&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;hodor&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_nesne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;());&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ReadKey&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
	&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;adaptör-deseni-&quot;&gt;Adaptör Deseni :&lt;/h3&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/desing_patterns/adaptör_deseni1.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;div class=&quot;language-c# highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;using&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;System&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;namespace&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;ConsoleApp5&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Program&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Adapte&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;ozelIstek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;double&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;/&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;interface&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;IHedef&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;int&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Adaptor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Adapte&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
		&lt;span class=&quot;n&quot;&gt;IHedef&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;int&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Sayinin yuvarlanmishali &quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;int&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Math&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;Round&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ozelIstek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Adapte&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_adapte&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Adapte&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Yeni arayuzden once: &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_adapte&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ozelIstek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;m&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;IHedef&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_hedef&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Adaptor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Yeni arayuz ile: &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_hedef&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;istek&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;));&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ReadKey&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
	&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/desing_patterns/adaptör_deseni2.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;div class=&quot;language-c# highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;using&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;System&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;namespace&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;ConsoleApp6&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Program&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;interface&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;ISiparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;siparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Adapte&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;ozelSiparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Gitar siparisi basarilibir sekilde olusturulmustur... &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Adaptor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Adapte&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
		&lt;span class=&quot;n&quot;&gt;ISiparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;siparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;s&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot; siparisi basarilibir sekilde olusturulmustur... &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Adapte&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_adapte&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Adapte&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;_adapte&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ozelSiparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;ISiparis_siparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Adaptor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;_siparis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;siparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Keman&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;ISiparis_siparis2&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Adaptor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;_siparis2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;siparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Tulum&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;ISiparis_siparis3&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Adaptor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;_siparis3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;siparis&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Saz&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;ReadKey&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
	&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;h3 id=&quot;cephe-deseni-&quot;&gt;Cephe Deseni :&lt;/h3&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/desing_patterns/cephe_deseni.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;div class=&quot;language-c# highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;using&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;System&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;namespace&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;ConsoleApp3&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Program&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Gadget&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;islem1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Gadget: Hazir\n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;islem2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Gadget: Kalkisa Hazirlaniyor...\n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Spencer&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;islem1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Spencer: Hazir\n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;islem2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Spencer: AtesEtmeye Hazirlaniyor...&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Cephe&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;protected&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Gadget&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_g&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;protected&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Spencer&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;_s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Cephe&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gadget&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altG&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Spencer&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_g&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altG&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_s&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
			&lt;span class=&quot;k&quot;&gt;public&lt;/span&gt; &lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Islem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Cephe  Tasarim Altsistemleri Baslatti\n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_g&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;islem1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;islem1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Cephe TasarimiAltsistemlere Komut Gonderiyor...\n&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_g&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;islem2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
				&lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;_s&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;islem2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
				&lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sonuc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;;&lt;/span&gt;
			&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
		&lt;span class=&quot;k&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;void&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;kt&quot;&gt;string&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;args&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Gadget&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altG&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Gadget&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Spencer&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altS&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Spencer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;();&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Cephe&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;cep&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;new&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;Cephe&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;altG&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;altS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;);&lt;/span&gt;
			&lt;span class=&quot;n&quot;&gt;Console&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;WriteLine&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;Islem&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;());&lt;/span&gt;
		&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
	&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
</description>
        <pubDate>Wed, 18 Nov 2020 17:19:26 +0000</pubDate>
        <link>https://sadeceben.github.iohttps://sadeceben.github.io//blog/Yaz%C4%B1l%C4%B1m-Tasar%C4%B1m-Desenleri/</link>
        <guid isPermaLink="true">https://sadeceben.github.iohttps://sadeceben.github.io//blog/Yaz%C4%B1l%C4%B1m-Tasar%C4%B1m-Desenleri/</guid>
        
        <category>software</category>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>Ruby İle Http Request Ve Base64 Örneği</title>
        <description>&lt;p&gt;Konuya başlamadan söylemeliyim. Ben linux tabanlı bir işletim sistemi  kullanıyorum ve yaptığım adımların bir kaç kısmı windowsta  çalışmayabilir. Şimdiden iyi okumalar…&lt;/p&gt;

&lt;h1 id=&quot;http-request-&quot;&gt;HTTP REQUEST ?&lt;/h1&gt;

&lt;p&gt;Öncelikle http’den kısaca bahsedeyim. HTTP ( Hybertext Transfer Protocol ) , client ( istemci ) ve server ( sunucu ) arasında iletişim sağlayan  protokoldur. Bu iletişim şekline göre de bir çok method vardır. Ben  burada GET methoduyla istek gönderen bir kod yazacağım. Daha fazla  bekletmeden kodumuza geçelim.&lt;/p&gt;

&lt;p&gt;Öncelikle burada yapmamız gereken bir kaç adım var.
&lt;strong&gt;Birincisi :&lt;/strong&gt;&lt;/p&gt;

&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#!/bin/ruby -w&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Burada yazacağımız dosyayı ne ile çalıştıralacağını gösterdik.  “-w” parametresi ne dersiniz ruby çalışırken ki bilgilendirme mesajını  yazmayı engeller ( Ruby version numarası vb…)
&lt;strong&gt;İkincisi ise :&lt;/strong&gt;
 Kullanmış olduğum paketi ( httparty ) gem paket yöneticisi ile indirmek için terminal ekranına bunu yazalım.&lt;/p&gt;

&lt;div class=&quot;language-bash highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nb&quot;&gt;sudo &lt;/span&gt;gem &lt;span class=&quot;nb&quot;&gt;install &lt;/span&gt;httparty
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Şimdi kodumuzu anlatmaya geçelim.&lt;/p&gt;

&lt;h1 id=&quot;http-request--get-methods--&quot;&gt;HTTP REQUEST ( GET METHODS ) :&lt;/h1&gt;

&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#!/bin/ruby -w&lt;/span&gt;
&lt;span class=&quot;nb&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;httparty&quot;&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;ARGV&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;null&quot;&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;null&quot;&lt;/span&gt;
           &lt;span class=&quot;n&quot;&gt;res&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;HTTParty&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;get&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;url&lt;/span&gt;
           &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;res&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;code&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_i&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;200&lt;/span&gt;
               &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;res&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;body&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_s&lt;/span&gt;
           &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;
               &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;kod : &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;res&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;code&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_s&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
           &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;
        &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;hata: argüman girmediniz&quot;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Kod çalışırken girilen &lt;strong&gt;(url) argüman&lt;/strong&gt; linkine &lt;strong&gt;get methodu&lt;/strong&gt; ile istek atıyoruz. İsteğimizin gidip gitmediğini ya da herhangi bir değişlikliğe uğrayıp uğramadığını anlamak içinse response &lt;strong&gt;(res)&lt;/strong&gt; yani yanıtı yazdırmamız lazım.
 bunun içinse yanıt kodu “res.code.to_i” eğer (if) 200 dönerse (200 numaralı kod, http isteğinin başarılı bir şekilde bağlantı sağladığı anlamına gelir) sayfa içeriğini(res.body.to_s) ekrana yazdırıyoruz. Eğer ( else ) 200 dönmezse yanıt kodunu (res.code.to_s) ekrana yazdırıyoruz. Ve de hiçbir url ( Argüman ) girilmezse hata mesajı sizi karşılıyor. Yazdığım kod bu kadardı. Bu sadece get methodu için bir istekti. Daha bir sürü request türü var…&lt;/p&gt;

&lt;p&gt;Meraklısı için &lt;a href=&quot;https://www.w3schools.com/tags/ref_httpmethods.asp&quot;&gt;http request&lt;/a&gt; türleri&lt;/p&gt;

&lt;p&gt;(&lt;strong&gt;Kodun Başarılı ( 200 ) Çıktısı :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images\posts\2020\200.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Bu kod ile diyeceklerim şimdilik bu kadardı. Sırada ki kodumuza geçelim…&lt;/p&gt;

&lt;h1 id=&quot;base64-encode--decode&quot;&gt;BASE64 ENCODE &amp;amp; DECODE&lt;/h1&gt;
&lt;p&gt;Base64 nedir birazcık ondan bahsedeyim. &lt;strong&gt;6 bit&lt;/strong&gt; ile ifade edilen &lt;strong&gt;64 farklı&lt;/strong&gt; sayı, &lt;strong&gt;ASCII&lt;/strong&gt; karakter kümesinde yazdıralabilir karakter ( &lt;strong&gt;Printable Character&lt;/strong&gt;)  olarak ifade edilen ve aşağıda gösterilen 64 farklı karakterle  eşleştirilmiştir. Eldeki 6 bitlik verinin bu tablo ile eşleştirilmesi  ile &lt;strong&gt;Base64 Encoding&lt;/strong&gt; yapılmış olur.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images\posts\2020\base64.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Şimdi çok konuşmadan kodumuza geçelim.&lt;/p&gt;

&lt;h1 id=&quot;base64-encode--decode-&quot;&gt;BASE64 ENCODE &amp;amp; DECODE :&lt;/h1&gt;

&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#!/bin/ruby -w &lt;/span&gt;

&lt;span class=&quot;nb&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;base64&quot;&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;prm&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;ARGV&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;null&quot;&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;str&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;ARGV&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;null&quot;&lt;/span&gt;


  &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_s&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;null&quot;&lt;/span&gt;

       &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;prm&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_s&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;-e&quot;&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;Base64&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;encode64&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;str&lt;/span&gt;

       &lt;span class=&quot;k&quot;&gt;elsif&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;prm&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_s&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;-d&quot;&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;Base64&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;decode64&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;str&lt;/span&gt;

       &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;parametre hatası ! &quot;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;Encoding için -e yazınız.&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;Decoding için -d yazınız.&quot;&lt;/span&gt;
       &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;

  &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;hata : bir argüman girmediniz&quot;&lt;/span&gt;
  &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Hadi gelin ne kodlamışım anlatmaya başlayayım. Öncelikle yukarıda bahsettiğim çalışma dosyasını tanımlayalım.&lt;/p&gt;

&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#!/bin/ruby -w&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;daha sonra,
&lt;strong&gt;Ruby&lt;/strong&gt;‘nin kendine ait bir &lt;strong&gt;base64 kütüphanesi&lt;/strong&gt; var onu tanımlamak için şunu yazalım.&lt;/p&gt;

&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nb&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;base64&quot;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;
Tamamdır bundan sonrası çok basit. Dışarıdan iki argüman alıyoruz ilk argümanımız (ARGV[0])  yani &quot;prm&quot; (parametre kelimesini &quot;kendimce&quot; kısaltım) bize decode mu yoksa encode mu yapacağımız söyleyecek. İkinci argümanımız ise  (ARGV[1]) yani &quot;str&quot; (String kelimesini kendimce kısalttım) bize encode ya da decode edilcek kelimeyi verecek. 
Eğer '||' karakterleri ) herhangi bir argüman eksik ya da girilmezse onlara &quot;null&quot; kelimesini (String) atayacak. Bundan sonrası daha da basit. Eğer (if) dedim &quot;str&quot;  &quot;null&quot; değerinden başka bir değer almışsa &quot;-e&quot; ise encode et, &quot;-d&quot; ise decode et. Herhangi bir hata durumunda ise &quot;else&quot; bloklarını çalıştır dedim.
&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Bu da kodun çalışırken görseli :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images\posts\2020\çalışırjen.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bu da çalışmazken ki görseli :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images\posts\2020\çalışmazken.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Beni buraya kadar okuduğunuz için &lt;strong&gt;teşekkür ederim&lt;/strong&gt;. Şimdilik diyeceklerim bu kadar.&lt;/p&gt;
</description>
        <pubDate>Tue, 21 Apr 2020 12:00:00 +0000</pubDate>
        <link>https://sadeceben.github.iohttps://sadeceben.github.io//blog/Ruby-%C4%B0le-Http-Request-Ve-Base64-%C3%96rne%C4%9Fi/</link>
        <guid isPermaLink="true">https://sadeceben.github.iohttps://sadeceben.github.io//blog/Ruby-%C4%B0le-Http-Request-Ve-Base64-%C3%96rne%C4%9Fi/</guid>
        
        <category>ruby</category>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>OSI Ve TCP/IP NEDİR &amp;&amp; NASIL ÇALIŞIR ?</title>
        <description>&lt;h1 id=&quot;osi-nedi̇r--nasil-çalişir-&quot;&gt;OSI NEDİR &amp;amp;&amp;amp; NASIL ÇALIŞIR ?&lt;/h1&gt;

&lt;p&gt;İlk önce OSI ( &lt;strong&gt;Open Systems Interconnections&lt;/strong&gt; ) modeli neden çıktı onu anlatalım. 1980 öncesinde iki cihazın  haberleşmesi için, o dönem bilgisayar donanımı üreten firmaların kendi  yaptıkları özel ağlar kullanıyordu.
 yani bu demek oluyor ki sadece o donanıma sahip cihazlarla iletişim sağlanabilir Mesela IBM’in SNA ( &lt;strong&gt;System Network Architecture&lt;/strong&gt; ). İşte burada tam olarak OSI modeli fikri ortaya atılıyor. 
&lt;strong&gt;Neden olmasın….&lt;/strong&gt; 
 OSI sayesinde  artık donanım üreten firmaların kendi özel ağlarını  kullanmamıza gerek kalmayacaktı. Artık iki bilgisayar iletişim  kurabilecekti. O zaman lafı uzatmadan gelin OSI nasıl çalışıyor  öğrenelim….&lt;/p&gt;

&lt;p&gt;OSI birbirleriyle &lt;strong&gt;ardışık&lt;/strong&gt; bir şekilde &lt;strong&gt;etkileşimli&lt;/strong&gt; yani alt görevli bir şekilde 7 &lt;strong&gt;ayrı&lt;/strong&gt; katmandan oluşur.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Sırasıyla katmanlar&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;&lt;strong&gt;Physical Layer ( Fiziksel Katman )&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Data Link Layer ( Veri Bağlantısı Katmanı )&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Network Layer ( Ağ Katmanı )&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Transport Layer ( İletim Katmanı )&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Session Layer ( Oturum Katmanı )&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Prensentation Layer ( Sunum Katmanı )&lt;/strong&gt;&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;Application Layer ( Uygulama Katmanı )&lt;/strong&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/osi.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Şimdi bu sıraladığımız katmanları açıklayalım…&lt;/strong&gt;&lt;/p&gt;

&lt;h2 id=&quot;physical-layer--fiziksel-katman--nedir--nasıl-çalışır-&quot;&gt;Physical Layer ( Fiziksel Katman ) Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Burada gelen verinin bitlere yani ikilik sayı sistemine ( sadece 0 ve 1  olan sayı sistemi ) çevrilmesinden ya da daha farklı bir deyişle verinin dijitalleşmesinden sorumludur . Tek amacı gelen verinin yapısına  bakmaksızın taşımaktır. Nasıl taşır diye sorarsanız ise cevap çok basit &lt;strong&gt;internet kablolarıyla&lt;/strong&gt; .
Tabi cevap basit ama arkada dönen durum biraz öyle değil . Veri bitleri  kablolarla iletilirken belli bir kurala göre iletilir. Bu iki kural iki  bilgisayar arasında kullanılmalıdır. Eğer kullanılmazsa iletişim  sağlanamaz veriler anlamsızlaşır. Peki nedir bu kural, Mesela bit  düzeyinde 1 sayısı +5 volt gücünde 2 milisaniyede gidecek .
 Eğer ki ikinci cihaz +7 volt 3 milisaniye şeklinde veriyi iletirse işte  burada iletişim sağlanamaz. ISO tam olarak ne iş yapar diye merak  ediyorsanız işte cevabı geliyor. ISO bu standartları sağlıyor. Bir  donanım firması ağ donanımı üretirken ISO’nun bu çıkardığı OSI modeline  göre üretim yapıyor. Bu katman hakkında diyeceklerim bu kadar şimdi  sırada ki katmana geçelim.&lt;/p&gt;

&lt;h2 id=&quot;data-link-layer--veri-bağlantısı-katmanı--nedir--nasıl-çalışır-&quot;&gt;Data Link Layer ( Veri Bağlantısı Katmanı ) Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Bu katmanı anlatmadan önce katmanın daha iyi anlaşılması için kısaca ARP ( &lt;strong&gt;Address Resulation Protocol&lt;/strong&gt; ) nedir ondan bahsedeyim . Kısaca ARP aynı ağda olduğumuz cihazların  MAC adresini bulmamıza yarayan bir protokoldür. Şimdi katmanı anlatmaya  geçelim.
 Veri bağlantı katmanında ARP protokolü ile fiziksel olarak  adreslenmesinden ve paketlerin fiziksel bağlantı sağlanan cihazlara  iletilimesinden sorumludur. Temel olarak görevi budur. Verilerin  kontrolü hata denetimi bu katmanda yapılır. CRC ( &lt;strong&gt;Cyclic Redundancy Check&lt;/strong&gt; ) verilerin doğrulandığı bir sistemdir. Peki nasıl doğrular kısaca bahsedeyim. &lt;strong&gt;Gelen veri&lt;/strong&gt; ile &lt;strong&gt;alınan veri&lt;/strong&gt; aynı ise geçerlidir. Ama eğer yolda değiştirilmişse (&lt;strong&gt;Örn: kötü amaçlı&lt;/strong&gt;) CRC bunu engeller. Buraya kadar anlattıklarımı özetlemek istersem aynı  ağda bulunan cihazların adreslenerek verinin güvenli bir şekilde  iletilmesini sağlar .&lt;/p&gt;

&lt;p&gt;Sırada ki katmana geçelim….&lt;/p&gt;

&lt;h2 id=&quot;network-layer--ağ-katmanı--nedir--nasıl-çalışır-&quot;&gt;Network Layer ( Ağ Katmanı ) Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Bu katmanda mantıksal adresleme yapılırak uzakta ki cihazlara bağlantı  sağlanır. Peki nedir mantıksal adresleme. Mantıksal adresleme ilk  cümlemde de dediğim gibi uzakta ki cihazlarla iletşim kurmak için  kullanılan TCP/IP dediğimiz şeydir. IPV4 için 32 bit boyutunda IPV6 için 128 bit boyutundadır. Ve bu katmanda paket içinde bulunur.
 Bu katmanda IP ( Internet Protocol ) çalışır. Bu katmanda Routerlar  aracılığıyla paketler gideceği yere yönlendirilir . Üst katmandan gelen  mantıksal adreslemeler Fiziksel Adreslemeye dönüştürülür . Diyeceklerim  Bu kadardır. Sırada ki katmana geçebiliriz .&lt;/p&gt;

&lt;h2 id=&quot;transport-layer--i̇letim-katmanı--nedir--nasıl-çalışır-&quot;&gt;Transport Layer ( İletim Katmanı ) Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Taşıma katmanı adından da anlaşılacağı gibi verinin nasıl taşınacağına  karar verir. Üst katmandan gelen veri ağ paketi boyutunda ( Yani üst  katmandan gelen büyük veriyi küçük veriye çevirme ) getirilip bir alt  katman olan Network Layer iletilir . TCP ve UDP bu katmanda çalışır .
 Bu katmanda da hata kontrolü CRC çalışır. İletilemeyen veriler tekrardan iletilir. Ulaşılmış veriler de başarı mesajı verir .&lt;/p&gt;

&lt;h2 id=&quot;session-layer--oturum-katmanı--nedir--nasıl-çalışır-&quot;&gt;Session Layer ( Oturum Katmanı ) Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Oturum katmanı yapılan işlemlerin başlatılmasından, sürdürülmesinden ve  de kapatılmasından sorumlu katmandır . Bu katmanın en can alıcı  özelliği, Bilgisayarımız aynı anda birden fazla cihazla iletişim halinde olduğunda doğru bilgisayarla iletişimde bulunmamızı sağlar. Bu bir üst  katmana gönderilecek verilere ayrı ayrı oturum açarak sağlarlar. Son  olarak bu katmanda socket’ler çalışır. Sırada ki katmanımıza geçelim.&lt;/p&gt;

&lt;h2 id=&quot;prensentation-layer--sunum-katmanı---nedir--nasıl-çalışır-&quot;&gt;Prensentation Layer ( Sunum Katmanı )  Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Sunuş katmanın en önemli özelliği verilerin karşı bilgisayarın  anlayacağı formata çevirmesidir. Bu sayede birbirinden farklı  programların iletişime geçmesini ( Birbirlerinin verilerini  kullanabilmesi ) sağlar. Verinin formatı belirlenir. Veriyi şifreleme,  sıkıştırma ve açma yine bu katmanda yapılır. Son katmanımıza geçelim.&lt;/p&gt;

&lt;h2 id=&quot;application-layer--uygulama-katmanı--nedir--nasıl-çalışır-&quot;&gt;Application Layer ( Uygulama Katmanı ) Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h2&gt;

&lt;p&gt;Uygulama katmanı bilgisayarda çalışan uygulamalar ile ağ arasında  iletişim görevi alır. OSI katmanları arasında bir tek bu diğer katmanlar ile iletşim halinde değildir. Kısaca görevi uygulamaların ağda sorunsuz çalışması için görev alır. SSH , telnet , http , https , SMTP , SNMP , DNS , FTP vb. servisler ve uygulamalar bu katmanda çalışır. Diyeceklerim bu kadar.&lt;/p&gt;

&lt;p&gt;Şimdi buraya kadar ne anlattım. Örnek içinde vermek gerekirse. Şimdi X  kullanıcı Y sunucusuna ssh ile bağlantı sağlıyacak. Burada ilk harekete  geçilecek nokta uygulama katmanında çalışan ssh programıdır. SSH  bağlantımız bu katmandan bilgisayara iletilir. Bağlantı sunum katmanında ssh bağlantısının isteği üzere gerekli format veya şekilde paketlenir.  Oturum katmanı bu iletişim için bir oturum başlatır. İletim katmanında  ise bağlantı isteğimiz segmentlere yani ( frame )’lere ayırarak  herbirinin başına ilgili verilerin hangi porttan bağlanılacağı gibi  bilgilerin eklediği PDU (protocol data unit) ekler. Parçalara ayrılan  bağlantının her bir segmenti ( frame ) ayrı ayrı alt katman olan ağ  katmanına iletilir. Ağ katmanı her bir parça için içerisinde kaynak ve  hedef IP adreslerinin ve diğer bilgilerin bulunduğu kendi PDU’sunu  ekler. Veri bağı katmanı kendisine gönderilen pakete kaynak ve hedef MAC adres bilgilerini ve diğer kontrol parametrelerini bulunduran kendi  PDU’sunu ekleyerek fiziksel katmana gönderir. Fiziksel katman kendisine  gönderilen tüm paketi 1ve 0 lardan oluşan bilgi katarı olarak bağlı  olduğu iletişim ortamına elektrik, radio sinyali veya ışık olarak  gönderir. Anahtarlama, yönlendirme işlemlerinden sonra hedefe ulaşan 1  ve 0 lardan oluşan bilgiler kaynak tarafında yapılan tüm işlemlerin  tersi yapılarak tekrardan uygulama katmanı ssh programı tarafından  kaydedilir…. Diyeceklerim bu kadar….&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/osi.gif&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;osi-modelinin-avantajları-nelerdir-&quot;&gt;OSI modelinin avantajları nelerdir ?&lt;/h2&gt;

&lt;p&gt;öncelikle iki bilgisayarın ileteşim kurması artık daha kolay bir şekilde yapılabiliyor. Ve de verilerin iletiminde hata kontrol mekanizması ( &lt;strong&gt;CRC&lt;/strong&gt; ) vardır. Verilerin iletimi belli bir standart haline getirelerek karmaşıklık önlenmiştir.&lt;/p&gt;

&lt;p&gt;Beni okuduğunuz için teşekkür ederim…&lt;/p&gt;

&lt;h1 id=&quot;tcpip-nedir--nasıl-çalışır-&quot;&gt;TCP/IP Nedir &amp;amp;&amp;amp; Nasıl Çalışır ?&lt;/h1&gt;

&lt;p&gt;TCP/IP, TCP ( Transmission Control Protocol ) ve IP ( Internet Protocol ) ’nin birlikte çalışmasıdır. TCP sizin web tarayıcınız ile ağ  yazılımınız arasındaki haberleşmeye bakar. IP diğer bilgisayarlar ile  haberleşmeye bakar. TCP veriyi gönderilmeden önce IP paketlerine  ayrılmasından ve hedeflerine vardıklarında da bu paketlerin  birleştirilmesinden sorumludur. IP paketlerin alıcıya gönderilmesinden  sorumludur.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Peki IP nedir…&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;IP, bilgisayarlar arası iletişim sağlamak için bağlantısız  (connectionless) bir haberleşme protokolüdür. İki bilgisayarın  birbirleriyle haberleşmesi esnasında herhangi bir haberleşme hattı  kullanmaz. Bu IP’nin ağ hatlarına olan ihtiyacını azaltır. Böylece her  hat aynı anda birden çok bilgisayarın birbirleri arasında haberleşmesi  için kullanılabilir. IP ile veriler birbirinden bağımsız küçük  “paketlere” ayrılır ve bilgisayarlar arasında internet aracılığıyla  gönderilir. IP, her paketin hedefine “yönlendirilmesinden” sorumludur.&lt;/p&gt;

&lt;p&gt;Yani kısaca anlatmak gerekirse TCP iki cihaz arasında iletişim yolu açar IP ise paketlerin doğru yere ulaşmasını sağlar….&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Şimdilik diyeceklerim bu kadar.&lt;/strong&gt;&lt;/p&gt;
</description>
        <pubDate>Sun, 19 Apr 2020 12:00:00 +0000</pubDate>
        <link>https://sadeceben.github.iohttps://sadeceben.github.io//blog/OSI-Ve-TCPIP-NED%C4%B0R-&&-NASIL-%C3%87ALI%C5%9EIR/</link>
        <guid isPermaLink="true">https://sadeceben.github.iohttps://sadeceben.github.io//blog/OSI-Ve-TCPIP-NED%C4%B0R-&&-NASIL-%C3%87ALI%C5%9EIR/</guid>
        
        <category>network</category>
        
        
        <category>blog</category>
        
      </item>
    
      <item>
        <title>Ruby Nedir ?</title>
        <description>&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/rubylogo.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;h3 id=&quot;ruby-nedir-&quot;&gt;Ruby Nedir ?&lt;/h3&gt;

&lt;p&gt;Her şeyden önce nesneye yönelik bir script dilidir. bu dilin yapımcısı ( Yukuhiro Matsumoto ) amacı perlden daha güçlü, pythondan daha nesneye yönelik bir dil yapmaktı. Yapım nedeni ise ilginç, o dönemde ki mevcut programlama dillerin de istediğini bulamayınca yeni bir programlama dili tasarlamaya başlar. Bir çok programlama dilinden esinlenmiştir. Bunlar arasında Perl’de vardır. Bu arada pek teknik bir bilgi olmasada perl (inci) haziran ayının burç taşı. Ruby ise ondan sonra gelen temmuz ayının burç taşı olan Ruby (yakut)’ dir.&lt;/p&gt;

&lt;p&gt;Son olarak ruby’nin kendi resmi sitesine girdiğiniz de sizi bir söz karşılar&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&amp;gt; Bir programcının en iyi arkadaşı
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Bence nedir sorusunun en iyi cevabı budur.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.ruby-lang.org/tr/&quot;&gt;&lt;strong&gt;bakmak isteyene…&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3 id=&quot;avantajları-nelerdir-&quot;&gt;Avantajları nelerdir ?&lt;/h3&gt;
&lt;p&gt;Ruby ile istenileni kodlamak ( Gerçekten ) kolay. Benim en çok sevdiğim yapısı block tanımlarken ki esnekliği ve de parantez zorunluluğu olmaması.&lt;/p&gt;

&lt;p&gt;Bu&lt;/p&gt;
&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;   &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;selamla&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ad&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;Selam, &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ad&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
   &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;

   &lt;span class=&quot;n&quot;&gt;selamla&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;sadeceben&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Ve bu&lt;/p&gt;
&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;   &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;selamla&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ad&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;Selam, &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ad&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
   &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;

   &lt;span class=&quot;n&quot;&gt;selamla&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;sadeceben&quot;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Kod da çalışıcaktır. Ruby de kodlarken kurallara takılmazsınız. Ve kodlarken fark edeceksiniz ki bazı şeyleri tahmin etmeye başlıyorsunuz.
Mesela sistem zamanını yazdıralım&lt;/p&gt;
&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;system_date&lt;/span&gt;
    &lt;span class=&quot;nb&quot;&gt;puts&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;Time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;now&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;to_s&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;system_date&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Kodun Çıktısı :&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/kodunçıktısı1.png&quot; alt=&quot;Screenshot&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Linux sistemler’de “system” parametresi ile linux komutları çalıştırmak mümkün olmakla beraber Windows sistemlerde ( Denemedim ) komut çalıştırabiliyor.&lt;/p&gt;
&lt;div class=&quot;language-ruby highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;c1&quot;&gt;#!/bin/ruby -w&lt;/span&gt;

   &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;scan&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ip&lt;/span&gt;
       &lt;span class=&quot;nb&quot;&gt;system&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;nmap -sSV &lt;/span&gt;&lt;span class=&quot;si&quot;&gt;#{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ip&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&lt;/span&gt;
   &lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;

   &lt;span class=&quot;n&quot;&gt;ip&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;no&quot;&gt;ARGV&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;localhost&quot;&lt;/span&gt;
   &lt;span class=&quot;nb&quot;&gt;scan&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ip&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Kodun çıktısı :&lt;/strong&gt;
&lt;img src=&quot;https://sadeceben.github.io/images/posts/2020/kodunçıktısı2.png&quot; alt=&quot;Screenshot&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Aslında fark edemediğim ve hatırlamadığım o kadar çok avantajı var ki. İlerleyen yazılarımda anlatabilirim. Okuduğunuz için teşekkür ederim.&lt;/p&gt;

</description>
        <pubDate>Wed, 15 Apr 2020 12:00:00 +0000</pubDate>
        <link>https://sadeceben.github.iohttps://sadeceben.github.io//blog/Ruby-Nedir/</link>
        <guid isPermaLink="true">https://sadeceben.github.iohttps://sadeceben.github.io//blog/Ruby-Nedir/</guid>
        
        <category>ruby</category>
        
        
        <category>blog</category>
        
      </item>
    
  </channel>
</rss>
