Skip to content

Instantly share code, notes, and snippets.

View bhdryrdm's full-sized avatar
🏠
Working from home

Bahadır YARDIM bhdryrdm

🏠
Working from home
View GitHub Profile
-----BEGIN PGP PUBLIC KEY BLOCK-----
mQGNBF+zgxIBDADI6qWOwsWzGzziTeXxz5kiSdkS9GWmD0W8gjfcWH2s2m7r0bUO
s/AEssIT3vWH9Bcb1mFIT3tiuJjkVsvKV4+fFVWMOwzXe0lzvW5u21tj60u8GSlb
TGsp3/aDXESnAT8wZGN4Zztxt6cHTH54fCkWmuU6Y9yUMaezC4U/rpSlop/4K5+W
x4ToJVQBibqKOSVXWyuYCN+XLWTAgd14hOU4A7QSQt1UVBFH1QRZ65qYpWpIEE22
rQkOLuvbNbx/dlwxEf8I7T5ozkKWv1qRQSezqWoLSj2y247EkPShkIz3sPlXvpHM
e1/99USMAqMhrjPTGOwjfvBobaGQC3yUwTgDvjBLoutwAx7ujywUWPcyRA3/o+1z
9HA9IKTTzt0B7n0x+MFW+Lr2Id9pPUd8ieq97LXfqbahSHXXESHHJb2b6J01N8zw
db96AJTvkdK29j04KX+KNSs9MFqkzJqTr5fHBWda+ucgy848D6Wola8GJrWcjzsL
@bhdryrdm
bhdryrdm / Dockerfile
Last active May 17, 2020 23:16
Heroku Aspnet Dockerfile
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build-env
EXPOSE 80
WORKDIR /app
# Copy csproj and restore as distinct layers
COPY *.csproj ./
RUN dotnet restore
# Copy everything else and build
COPY . ./

Keybase proof

I hereby claim:

  • I am bhdryrdm on github.
  • I am bhdryrdm (https://keybase.io/bhdryrdm) on keybase.
  • I have a public key whose fingerprint is D4CB C11F 4BB5 4264 371C A6A7 48E9 7141 8437 CF23

To claim this, I am signing this object:

@bhdryrdm
bhdryrdm / .gitlab-ci.yml
Created September 29, 2018 17:26 — forked from zerda/.gitlab-ci.yml
Gitlab CI for ASP.Net Core project
stages:
- build
- publish
.build: &build_template
stage: build
image: microsoft/dotnet:2.1-sdk-alpine
cache:
key: "$CI_PROJECT_NAMESPACE-$CI_PROJECT_NAME"
paths:
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevF_LABS.RequestResponse.XSS.StoredXSS
{
public class SXSS_S3_CKEditor_Request
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevF_LABS.RequestResponse.XSS.StoredXSS
{
public class SXSS_S2_StealRequest
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevF_LABS.RequestResponse.XSS.StoredXSS
{
public class SXSS_S2_SaveCookieRequest
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevF_LABS.RequestResponse.XSS.StoredXSS
{
public class SXSS_S1_CommentRequest
using DevF_LABS.Presentation.Filter;
using DevF_LABS.RequestResponse;
using DevF_LABS.RequestResponse.BrokenAuth;
using System;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Security;
namespace DevF_LABS.Presentation.Controllers
using DevF_LABS.Logs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace DevF_LABS.Presentation.Filter
{
public class LogActionFilter : ActionFilterAttribute, IActionFilter