Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 01-21-2016, 12:06 PM   #1
muthisdev
Confirmed User
 
muthisdev's Avatar
 
Industry Role:
Join Date: Jan 2016
Posts: 300
How you secure your website.

Hi GFY!

Those of you on here who have websites: how do you make sure your site is secure?

Those of you on here who have custom coders: How do you make sure the code they write doesn't open you up to hackers? How do you make sure they use best practices?

Those of you on here who have software products: how do you secure your product? What practices do you use? How do you defend against things like SQL injection and arbitrary code execution?
__________________
<?= base64_decode("aHR0cDovL211dGhpc2Rldi5jb20v") ?>
muthisdev is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-21-2016, 12:12 PM   #2
MakeMeGrrrrowl
Grrrrrrrrr
 
MakeMeGrrrrowl's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: Dreamland
Posts: 4,974
Quote:
Originally Posted by muthisdev View Post
Those of you on here who have custom coders: How do you make sure the code they write doesn't open you up to hackers? How do you make sure they use best practices?
You trust your programmer knows what they're doing? That's what I do.

I would trust my programmer with pretty much everything.
MakeMeGrrrrowl is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-21-2016, 12:43 PM   #3
Barry-xlovecam
It's 42
 
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
  1. Use a premium quality host if you are a smaller website operator.
  2. Always only allow safe user input.
  3. Use well branded open source software so you can see all of the code executed by it.
  4. Learn enough about code to be able to judge for yourself or pay someone who knows so that you can trust their opinion.
Barry-xlovecam is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 01:44 PM   #4
muthisdev
Confirmed User
 
muthisdev's Avatar
 
Industry Role:
Join Date: Jan 2016
Posts: 300
Quote:
Originally Posted by MakeMeGrrrrowl View Post
You trust your programmer knows what they're doing? That's what I do.

I would trust my programmer with pretty much everything.
That makes a lot of sense if you've had the same coder for a long time.

What if you're hiring a new coder?
__________________
<?= base64_decode("aHR0cDovL211dGhpc2Rldi5jb20v") ?>
muthisdev is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 01:45 PM   #5
muthisdev
Confirmed User
 
muthisdev's Avatar
 
Industry Role:
Join Date: Jan 2016
Posts: 300
Quote:
Originally Posted by Barry-xlovecam View Post
  1. Use a premium quality host if you are a smaller website operator.
  2. Always only allow safe user input.
  3. Use well branded open source software so you can see all of the code executed by it.
  4. Learn enough about code to be able to judge for yourself or pay someone who knows so that you can trust their opinion.
Does anyone on GFY do penetration testing? Do you see it as a service that would be useful on here?
__________________
<?= base64_decode("aHR0cDovL211dGhpc2Rldi5jb20v") ?>
muthisdev is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 02:06 PM   #6
trevesty
Confirmed User
 
trevesty's Avatar
 
Industry Role:
Join Date: Aug 2006
Location: Midwest
Posts: 3,802
Quote:
Originally Posted by muthisdev View Post
Does anyone on GFY do penetration testing? Do you see it as a service that would be useful on here?
There's a couple guys who do pen testing on here. I'm not sure there's much of a market for it in adult. The big boys(who are usually the least secure from my experience) think they're way more secure than they are, so won't hire outsiders usually. Not many people are willing to pay the premium to make sure they're truly secure in adult, but there are a few who have / do.
trevesty is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 02:25 PM   #7
deonbell
Confirmed User
 
deonbell's Avatar
 
Industry Role:
Join Date: Sep 2015
Posts: 1,045
Most people here have small sites. The new thing is bug bounties. Sign up for HackerOne and look at the top guys. Follow them on twitter. I have a hackerone profile, But I am slow and old, So I have found no bugs yet.

One guy gave me $40 paypal and another guy offered me a costume when I found a reflective XSS bugs in their site. You can do that on XSSposed.org. But most of those easy bugs are being found and reported. More people are getting keen on sanitizing their user input.

Just a few days ago a guy found an XSS bug in yahoo mail. They gave him $10,000.
I think he was on Bugcrowd.

Just got through playing with Burp Suite today. Figuring out how it works. Fun stuff. But I probably shouldn't have run the spider function. I may get in trouble for that. Burp acts a proxy between your browser and a site. You can intercept input and change parameters before passing on the data to the site.
deonbell is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 02:26 PM   #8
kkkkkk
svp get banned svp
 
Industry Role:
Join Date: Dec 2005
Posts: 1,628
kkkkkk is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 03:15 PM   #9
clickity click
So Fecking Bummed
 
Industry Role:
Join Date: Aug 2014
Posts: 3,682
I use wordpress on shared hosting with some security plugins.
I know it's not ideal..
clickity click is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 06:05 PM   #10
MakeMeGrrrrowl
Grrrrrrrrr
 
MakeMeGrrrrowl's Avatar
 
Industry Role:
Join Date: Oct 2002
Location: Dreamland
Posts: 4,974
Quote:
Originally Posted by muthisdev View Post
That makes a lot of sense if you've had the same coder for a long time.

What if you're hiring a new coder?
I would cry.
MakeMeGrrrrowl is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 06:08 PM   #11
brassmonkey
Pay It Forward
 
brassmonkey's Avatar
 
Industry Role:
Join Date: Sep 2005
Location: Yo Mama House
Posts: 76,934
giant bitch named rose
__________________
TRUMP 2025 KEKAW!!! - Support The Laken Riley Act!!!
END DACA - SUPPORT AZ HCR 2060 52R - email: brassballz-at-techie.com
brassmonkey is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 07:29 PM   #12
Barry-xlovecam
It's 42
 
Industry Role:
Join Date: Jun 2010
Location: Global
Posts: 18,083
Quote:
Originally Posted by muthisdev View Post
Does anyone on GFY do penetration testing? Do you see it as a service that would be useful on here?
I know someone whose brother does penetration testing for larger companies not from GFY Pete's brother is certified to do PCI audits. People that are qualified to do audits and web server penetration testing are too expensive for 97+% of the audience I see here.
Barry-xlovecam is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-22-2016, 07:49 PM   #13
Sarn
Say for stagnation Yes!!1
 
Sarn's Avatar
 
Industry Role:
Join Date: Sep 2015
Location: Russia
Posts: 10,883
put your script. adjust to keep the logs on another server.
doing permanent backup on another server.
read logs and constantly monitors the server.
after ferst cracked - look at the logs as and the fixes in it backups
load fixed backups on new server
repeat until the hacks do not stop
You can leave a note for the hacker reward for the found vulnerabilities - This will reduce the likelihood of damage to you.
Sarn is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 01-23-2016, 08:41 AM   #14
adultmobile
No, I am not banned
 
adultmobile's Avatar
 
Industry Role:
Join Date: Nov 2003
Location: ChatGF.com
Posts: 5,345
Don't advertise your program in black hat and botnet forums.
__________________

TubeCamGirl.com
adultmobile is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks

Tags
secure, practices, code, defend, product, software, products, arbitrary, execution, injection, sql, website, websites, gfy, coders, custom, write, hackers, site



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.