├── source ├── images │ ├── .keep │ └── logo.png ├── CNAME ├── javascripts │ └── site.js ├── partials │ ├── _header.erb │ └── _footer.erb ├── stylesheets │ └── site.css.scss ├── layouts │ ├── layout.erb │ └── layout2.erb ├── category │ ├── guvenlik.html.markdown.erb │ ├── yazilim.html.markdown.erb │ ├── film-dizi-belgesel.html.markdown.erb │ └── kitap.html.markdown.erb └── index.html.erb ├── CNAME ├── .gitignore ├── Gemfile ├── LICENSE ├── config.rb └── Gemfile.lock /source/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | kaynak.pausiber.xyz -------------------------------------------------------------------------------- /source/CNAME: -------------------------------------------------------------------------------- 1 | kaynak.pausiber.xyz 2 | -------------------------------------------------------------------------------- /source/javascripts/site.js: -------------------------------------------------------------------------------- 1 | // This is where it all goes :) 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle 2 | .cache 3 | .DS_Store 4 | .sass-cache 5 | build/ 6 | -------------------------------------------------------------------------------- /source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PauSiber/kaynak/HEAD/source/images/logo.png -------------------------------------------------------------------------------- /source/partials/_header.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'middleman', '~> 4.2' 4 | gem 'middleman-autoprefixer', '~> 2.7' 5 | gem 'tzinfo-data', platforms: [:mswin, :mingw, :jruby, :x64_mingw] 6 | gem 'wdm', '~> 0.1', platforms: [:mswin, :mingw, :x64_mingw] 7 | gem "middleman-blog", "~> 4.0" 8 | # Other gems 9 | gem 'middleman-deploy', '~> 2.0.0.pre.alpha' 10 | gem 'middleman-syntax', '~> 3.0' 11 | gem 'redcarpet', '~> 3.4' 12 | gem 'nokogiri', '~> 1.8', '>= 1.8.2' 13 | gem 'builder', '~> 3.2', '>= 3.2.3' 14 | gem 'bootstrap', '~> 4.0.0.beta2.1' 15 | gem 'font-awesome-sass', '~> 4.7.0' 16 | gem 'rails-assets-jquery', source: 'https://rails-assets.org' 17 | gem 'rails-assets-popper.js', source: 'https://rails-assets.org' 18 | gem 'rails-assets-modernizr', source: 'https://rails-assets.org' 19 | -------------------------------------------------------------------------------- /source/stylesheets/site.css.scss: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap'); 2 | 3 | body{ 4 | font-family: 'Poppins', sans-serif; 5 | background-color: #101013; 6 | color:#FFFFFF; 7 | } 8 | 9 | .nav-transparent{ 10 | background-color: transparent; 11 | } 12 | 13 | hr { 14 | height: 1px; 15 | color: white; 16 | border: none; 17 | } 18 | .card{ 19 | background-color: #181C27; 20 | transition: all ease .2s; 21 | } 22 | .card:hover{ 23 | transform: scale(1.05); 24 | background-color: #242a3a; 25 | } 26 | .card-body{ 27 | color: #79849E; 28 | .card-title{ 29 | color:white; 30 | } 31 | } 32 | .social-media-icons { 33 | display: flex; 34 | align-items: center; 35 | justify-content: space-evenly; 36 | } 37 | .container{ 38 | li{ 39 | margin-top:15px; 40 | } 41 | } -------------------------------------------------------------------------------- /source/layouts/layout.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | <%= current_page.data.title || "PauSiber" %> 12 | <%= stylesheet_link_tag "site" %> 13 | <%= javascript_include_tag "site" %> 14 | 15 | 16 | <%= partial 'partials/header' %> 17 |
18 | <%= yield %> 19 | <%= partial 'partials/footer'%> 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /source/layouts/layout2.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | <%= current_page.data.title || "PauSiber" %> 12 | <%= stylesheet_link_tag "site" %> 13 | <%= javascript_include_tag "site" %> 14 | 15 | 16 | <%= partial 'partials/header' %> 17 |
18 | <%= yield %> 19 | <%= partial 'partials/footer'%> 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /source/category/guvenlik.html.markdown.erb: -------------------------------------------------------------------------------- 1 | --- 2 | title: PauSiber | Guvenlik 3 | date: 06 Ekim 2019 4 | 5 | --- 6 | 7 |

Güvenlik ile ilgili kaynaklar

8 | 9 | 10 | - [Canyoupwnme](https://canyoupwn.me/) 11 | - [Web Security Academy](https://portswigger.net/web-security) 12 | - [OWASP](https://owasp.org) 13 | - [HackTheBox](https://www.hackthebox.eu/) 14 | - [PriviaHub](https://priviahub.com/) 15 | - [0x00sec](https://0x00sec.org/) 16 | - [vvhack](https://vvhack.org/) 17 | - [Azeria Labs](https://azeria-labs.com/) 18 | - [IoTSecurity](https://github.com/V33RU/IoTSecurity101) 19 | - [Liveoverflow](https://liveoverflow.com/) 20 | - [Exploit Education](https://exploit.education/) 21 | - [Mobile Security Testing Guide](https://mobile-security.gitbook.io/mobile-security-testing-guide/) 22 | - [ring0.info](https://ring0.info/) 23 | - [abdullahog.lu](http://web.archive.org/web/20190101014842/http://www.abdullahog.lu/index.php/bilisim) 24 | - [cihatyildiz](https://blog.cihatyildiz.com/) 25 | - [manalysiz](https://manalysiz.com/) -------------------------------------------------------------------------------- /source/partials/_footer.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/category/yazilim.html.markdown.erb: -------------------------------------------------------------------------------- 1 | --- 2 | title: PauSiber | Yazilim 3 | date: 21 Ekim 2020 4 | 5 | --- 6 | 7 |

Yazılım ile ilgili kaynaklar

8 | 9 | - [Güzel zine'ler hazırlıyor **`jvns.ca`**](https://jvns.ca/) 10 | - [JavaScript Zero To Hero](https://zerotohero.dev/) 11 | - [Clean Code](http://cleancoder.com/) 12 | - [Web Developer Roadmaps](https://roadmap.sh/) 13 | - [Python dokümantasyon **`Python Documentation`**](https://docs.python.org/3/) 14 | - [Django Girls](https://tutorial.djangogirls.org/tr/) 15 | - [Golang Tutorial](https://go-tour-turkish.appspot.com/list) 16 | - [Türkçe Go Programlama Dili Kitabı](https://kitap.golangtr.org/) 17 | - [Codewars](https://www.codewars.com/) 18 | - [HackerRank](https://www.hackerrank.com/) 19 | - [freeCodeCamp](https://www.freecodecamp.org/) 20 | - [W3Schools](https://www.w3schools.com/) 21 | - [DataCamp](https://www.datacamp.com/) 22 | - [Codecademy](https://www.codecademy.com/) 23 | - [Code School](https://www.codeschool.com/) 24 | - [Code Avengers](https://www.codeavengers.com/) 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 PaüSiber 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /source/category/film-dizi-belgesel.html.markdown.erb: -------------------------------------------------------------------------------- 1 | --- 2 | title: PauSiber | Film Dizi Belgesel 3 | date: 27 Ekim 2022 4 | 5 | --- 6 | 7 |

Film / Dizi / Belgesel ile ilgili kaynaklar

8 | 9 | - [Snowden (2016)](https://www.imdb.com/title/tt3774114/) 10 | - [Citizenfour (2014)](https://www.imdb.com/title/tt4044364/) 11 | - [Zero Days (2016)](https://www.imdb.com/title/tt5446858/) 12 | - [The Fifth Estate (2013)](https://www.imdb.com/title/tt1837703/) 13 | - [We Steal Secrets: The Story of WikiLeaks (2013)](https://www.imdb.com/title/tt1824254/) 14 | - [The Imitation Game (2014)](https://www.imdb.com/title/tt2084970/) 15 | - [The Social Network (2010)](https://www.imdb.com/title/tt1285016/) 16 | - [The Great Hack (2019)](https://www.imdb.com/title/tt9358204/) 17 | - [Steve Jobs (2015)](https://www.imdb.com/title/tt2080374/) 18 | - [Jobs (2013)](https://www.imdb.com/title/tt2357129/) 19 | - [Inside Bill's Brain: Decoding Bill Gates ](https://www.imdb.com/title/tt10837476/) 20 | - [The Internet's Own Boy: The Story of Aaron Swartz (2014)](https://www.imdb.com/title/tt3268458/) 21 | - [We Are Legion: The Story of the Hacktivists (2012)](https://www.imdb.com/title/tt2177843/) 22 | - [Who Am I (2014)](https://www.imdb.com/title/tt3042408/) 23 | - [Mr. Robot (2015-2019)](https://www.imdb.com/title/tt4158110/) 24 | - [Unit 42 (2017)](https://www.imdb.com/title/tt6136644/) 25 | - [Person of Interest (2011-2016)](https://www.imdb.com/title/tt1839578/) 26 | - [The Playlist](https://www.imdb.com/title/tt11564258/) 27 | - [Suits](https://www.imdb.com/title/tt1632701/) 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- 1 | # Activate and configure extensions 2 | # https://middlemanapp.com/advanced/configuration/#configuring-extensions 3 | 4 | activate :autoprefixer do |prefix| 5 | prefix.browsers = "last 2 versions" 6 | end 7 | 8 | # Layouts 9 | # https://middlemanapp.com/basics/layouts/ 10 | 11 | # Per-page layout changes 12 | page '/*.xml', layout: false 13 | page '/*.json', layout: false 14 | page '/*.txt', layout: false 15 | page '/category/*', layout: 'layout2' 16 | activate :directory_indexes 17 | 18 | # With alternative layout 19 | # page '/path/to/file.html', layout: 'other_layout' 20 | 21 | # Proxy pages 22 | # https://middlemanapp.com/advanced/dynamic-pages/ 23 | 24 | # proxy( 25 | # '/this-page-has-no-template.html', 26 | # '/template-file.html', 27 | # locals: { 28 | # which_fake_page: 'Rendering a fake page with a local variable' 29 | # }, 30 | # ) 31 | 32 | # Helpers 33 | # Methods defined in the helpers block are available in templates 34 | # https://middlemanapp.com/basics/helper-methods/ 35 | 36 | # helpers do 37 | # def some_helper 38 | # 'Helping' 39 | # end 40 | # end 41 | 42 | # Build-specific configuration 43 | # https://middlemanapp.com/advanced/configuration/#environment-specific-settings 44 | 45 | # configure :build do 46 | # activate :minify_css 47 | # activate :minify_javascript 48 | # end 49 | 50 | activate :deploy do |deploy| 51 | deploy.deploy_method = :git 52 | end 53 | 54 | activate :relative_assets 55 | set :relative_links, true 56 | 57 | activate :syntax 58 | set :markdown_engine, :redcarpet 59 | set :markdown, no_intra_emphasis: true, tables: true, autolink: true, fenced_code_blocks: true, disable_indented_code_blocks: true, smartypants: true, strikethrough: true, space_after_headers: true, superscript: true, highlight: true, quote: true, footnotes: true, with_toc_data: true 60 | set :haml, { ugly: true } 61 | -------------------------------------------------------------------------------- /source/index.html.erb: -------------------------------------------------------------------------------- 1 | --- 2 | title: PaüSiber Kaynaklar 3 | date: 12 Ekim 2021 4 | --- 5 | 6 |
7 | 8 |
9 |

Önerdiğimiz Kaynaklar

10 |

Topluluğumuz tarafından takip edilmesi önerilen kaynakları saklar.

11 |
12 |

Kategoriler

13 |
14 | 15 |
16 |
17 |
🔒 Güvenlik
18 | Bu kategori altında güvenlik ile ilgili önerdiğimiz kaynaklara ulaşabilirsiniz. 19 |
20 |
21 | 22 |
23 |
24 |
💻 Yazılım
25 | Bu kategori altında yazılım ile ilgili önerdiğimiz kaynaklara ulaşabilirsiniz. 26 |
27 |
28 | 29 |
30 |
31 |
🎬 Film / Dizi / Belgesel
32 | Bu kategori altında film, dizi ve belgeseller ile ilgili önerdiğimiz kaynaklara ulaşabilirsiniz. 33 |
34 |
35 |
36 | 37 |
38 |
39 |
📚 Kitap
40 | Bu kategori altında kitaplar ile ilgili önerdiğimiz kaynaklara ulaşabilirsiniz. 41 |
42 |
43 |
44 |
45 |
46 | 47 | -------------------------------------------------------------------------------- /source/category/kitap.html.markdown.erb: -------------------------------------------------------------------------------- 1 | --- 2 | title: PauSiber | Kitap 3 | date: 06 Ekim 2019 4 | 5 | --- 6 | 7 |

Kitap ile ilgili kaynaklar

8 | 9 | 10 | - [Linux 101 Hacks - Türkçe Çevirisi](https://github.com/ozmu/Linuxta-101-Ipucu/blob/master/linuxta-101-ipucu.pdf) 11 | - [The Shellcoder's Handbook](https://www.amazon.com/Shellcoders-Handbook-Discovering-Exploiting-Security/dp/047008023X) 12 | - [Sockets, Shellcode, Porting,& Coding](https://www.amazon.com/Sockets-Shellcode-Porting-Coding-Professionals/dp/1597490059) 13 | - [A Bug Hunter's Diary](https://www.amazon.com/Bug-Hunters-Diary-Software-Security/dp/1593273851) 14 | - [Advanced Windows Debugging](https://www.amazon.com/Advanced-Windows-Debugging-Mario-Hewardt/dp/0321374460) 15 | - [Inside Windows NT](https://www.amazon.com/Inside-Windows-NT-Microsoft-Programming/dp/1572316772) 16 | - [The Rootkit Arsenal](https://www.amazon.com/Rootkit-Arsenal-Escape-Evasion-Corners/dp/1598220616) 17 | - [Hacking: The Art of Exploitation](https://www.amazon.com/Hacking-Art-Exploitation-Jon-Erickson/dp/1593271441) 18 | - [The Tangled Web](https://www.amazon.com/Tangled-Web-Securing-Modern-Applications/dp/1593273886) 19 | - [The Practice of Network Security Monitoring](https://www.amazon.com/Practice-Network-Security-Monitoring-Understanding/dp/1593275099/) 20 | - [The Web Application Hacker's Handbook](https://www.amazon.com/Web-Application-Hackers-Handbook-Exploiting/dp/1118026470/) 21 | - [Serious Cryptography](https://www.amazon.com/Serious-Cryptography-Practical-Introduction-Encryption/dp/1593278268) 22 | - [Introduction to Artificial Intelligence for Security Professionals](https://www.amazon.com/Introduction-Artificial-Intelligence-Security-Professionals-ebook/dp/B07654CFFQ) 23 | - [The Hacker Playbook 3](https://www.amazon.com/Hacker-Playbook-Practical-Penetration-Testing/dp/1980901759/) 24 | - [Practical Malware Analysis](https://www.amazon.com/Practical-Malware-Analysis-Hands-Dissecting/dp/1593272901) 25 | - [Professional Linux Kernel Architecture](https://www.amazon.com/Professional-Kernel-Architecture-Wolfgang-Mauerer/dp/0470343435) -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | remote: https://rails-assets.org/ 4 | specs: 5 | activesupport (5.0.7.2) 6 | concurrent-ruby (~> 1.0, >= 1.0.2) 7 | i18n (>= 0.7, < 2) 8 | minitest (~> 5.1) 9 | tzinfo (~> 1.1) 10 | addressable (2.7.0) 11 | public_suffix (>= 2.0.2, < 5.0) 12 | autoprefixer-rails (9.6.1.1) 13 | execjs 14 | backports (3.15.0) 15 | bootstrap (4.0.0) 16 | autoprefixer-rails (>= 6.0.3) 17 | popper_js (>= 1.12.9, < 2) 18 | sass (>= 3.5.2) 19 | builder (3.2.3) 20 | coffee-script (2.4.1) 21 | coffee-script-source 22 | execjs 23 | coffee-script-source (1.12.2) 24 | concurrent-ruby (1.1.5) 25 | contracts (0.13.0) 26 | dotenv (2.7.5) 27 | erubis (2.7.0) 28 | execjs (2.7.0) 29 | fast_blank (1.0.0) 30 | fastimage (2.1.7) 31 | ffi (1.11.1) 32 | font-awesome-sass (4.7.0) 33 | sass (>= 3.2) 34 | haml (5.1.2) 35 | temple (>= 0.8.0) 36 | tilt 37 | hamster (3.0.0) 38 | concurrent-ruby (~> 1.0) 39 | hashie (3.6.0) 40 | i18n (0.9.5) 41 | concurrent-ruby (~> 1.0) 42 | kramdown (1.17.0) 43 | listen (3.0.8) 44 | rb-fsevent (~> 0.9, >= 0.9.4) 45 | rb-inotify (~> 0.9, >= 0.9.7) 46 | memoist (0.16.0) 47 | middleman (4.3.5) 48 | coffee-script (~> 2.2) 49 | haml (>= 4.0.5) 50 | kramdown (~> 1.2) 51 | middleman-cli (= 4.3.5) 52 | middleman-core (= 4.3.5) 53 | middleman-autoprefixer (2.10.1) 54 | autoprefixer-rails (~> 9.1) 55 | middleman-core (>= 3.3.3) 56 | middleman-blog (4.0.3) 57 | addressable (~> 2.3) 58 | middleman-core (>= 4.0.0) 59 | tzinfo (>= 0.3.0) 60 | middleman-cli (4.3.5) 61 | thor (>= 0.17.0, < 2.0) 62 | middleman-core (4.3.5) 63 | activesupport (>= 4.2, < 5.1) 64 | addressable (~> 2.3) 65 | backports (~> 3.6) 66 | bundler 67 | contracts (~> 0.13.0) 68 | dotenv 69 | erubis 70 | execjs (~> 2.0) 71 | fast_blank 72 | fastimage (~> 2.0) 73 | hamster (~> 3.0) 74 | hashie (~> 3.4) 75 | i18n (~> 0.9.0) 76 | listen (~> 3.0.0) 77 | memoist (~> 0.14) 78 | padrino-helpers (~> 0.13.0) 79 | parallel 80 | rack (>= 1.4.5, < 3) 81 | sassc (~> 2.0) 82 | servolux 83 | tilt (~> 2.0.9) 84 | uglifier (~> 3.0) 85 | middleman-deploy (2.0.0.pre.alpha) 86 | middleman-core (>= 3.2) 87 | net-sftp 88 | ptools 89 | middleman-syntax (3.2.0) 90 | middleman-core (>= 3.2) 91 | rouge (~> 3.2) 92 | mini_portile2 (2.4.0) 93 | minitest (5.12.2) 94 | net-sftp (2.1.2) 95 | net-ssh (>= 2.6.5) 96 | net-ssh (5.2.0) 97 | nokogiri (1.10.4) 98 | mini_portile2 (~> 2.4.0) 99 | padrino-helpers (0.13.3.4) 100 | i18n (~> 0.6, >= 0.6.7) 101 | padrino-support (= 0.13.3.4) 102 | tilt (>= 1.4.1, < 3) 103 | padrino-support (0.13.3.4) 104 | activesupport (>= 3.1) 105 | parallel (1.17.0) 106 | popper_js (1.14.5) 107 | ptools (1.3.5) 108 | public_suffix (4.0.1) 109 | rack (2.0.7) 110 | rails-assets-jquery (3.4.1) 111 | rails-assets-modernizr (3.7.1) 112 | rails-assets-popper.js (1.15.0) 113 | rb-fsevent (0.10.3) 114 | rb-inotify (0.10.0) 115 | ffi (~> 1.0) 116 | redcarpet (3.5.0) 117 | rouge (3.11.1) 118 | sass (3.7.4) 119 | sass-listen (~> 4.0.0) 120 | sass-listen (4.0.0) 121 | rb-fsevent (~> 0.9, >= 0.9.4) 122 | rb-inotify (~> 0.9, >= 0.9.7) 123 | sassc (2.2.1) 124 | ffi (~> 1.9) 125 | servolux (0.13.0) 126 | temple (0.8.2) 127 | thor (0.20.3) 128 | thread_safe (0.3.6) 129 | tilt (2.0.10) 130 | tzinfo (1.2.5) 131 | thread_safe (~> 0.1) 132 | uglifier (3.2.0) 133 | execjs (>= 0.3.0, < 3) 134 | 135 | PLATFORMS 136 | ruby 137 | 138 | DEPENDENCIES 139 | bootstrap (~> 4.0.0.beta2.1) 140 | builder (~> 3.2, >= 3.2.3) 141 | font-awesome-sass (~> 4.7.0) 142 | middleman (~> 4.2) 143 | middleman-autoprefixer (~> 2.7) 144 | middleman-blog (~> 4.0) 145 | middleman-deploy (~> 2.0.0.pre.alpha) 146 | middleman-syntax (~> 3.0) 147 | nokogiri (~> 1.8, >= 1.8.2) 148 | rails-assets-jquery! 149 | rails-assets-modernizr! 150 | rails-assets-popper.js! 151 | redcarpet (~> 3.4) 152 | tzinfo-data 153 | wdm (~> 0.1) 154 | 155 | BUNDLED WITH 156 | 2.0.2 157 | --------------------------------------------------------------------------------