Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Project U-232
View Poll Results: NEW tracker source: Project U-232
I will give it a try 440 77.33%
No, i`m using another source 72 12.65%
XAM is my hero, i`m sticking to Template Shares 57 10.02%
Voters: 569. You may not vote on this poll

Closed Thread
  #361  
Old 19th August 2015, 19:51
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
Forgive me for my input. Thought people would appreciate.

I am dealing with multiple things atm thought u-232 people should know that but whatever right.

Sorry!
  #362  
Old 22nd August 2015, 18:35
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
The wrapper name is completely irrelevant as its only a php wrapper, I could name it $CUNT - $FUCKER - $$I_CONTAIN_UNSANITIZED _CODE - Makes not a jot of difference however the code I deploy within my wrapper does, firefly already mentioned, If i don't sanitize output from db to screen or if i don't protect sql querys then I'm in trouble. This shit is child's play, been advising people of its importance and how to do it for years on TBdev =]

Below is great, I could inject for fun and pawn any db using it


PHP Code:
sql_query("UPDATE users SET seedbonus = seedbonus-$INSTALLER09['bonus_per_delete'] WHERE id = $q["owner"]) or sqlerr(__FILE__, __LINE__); 
Sqlesc applied on the query stops any injection period

PHP Code:
sql_query("UPDATE users SET seedbonus = seedbonus-".sqlesc($INSTALLER09['bonus_per_delete'])." WHERE id = " sqlesc($q["owner"])) or sqlerr(__FILE____LINE__); 
No htmlspecialchars on output means I can deploy an XSS attack with ease and you won't have a clue its been deployed and I'll have you redirected to some other server

So sanitize any output before printing to screen

PHP Code:
$HTMLOUT.= "<tr>
    <td align='right'><font color='red'>&nbsp;*&nbsp;</font><b>&nbsp;
{$lang['edit_comment']}</b></td>
    <td>
    <select name='allow_comments'>
    <option value='" 
$row["allow_comments"]. "'>" .$row["allow_comments"]. "</option>
    <option value='yes'>Yes</option><option value='no'>No</option></select>
{$messc}</td></tr>\n"
At a minimum

PHP Code:
$HTMLOUT.= "<tr>
    <td align='right'><font color='red'>&nbsp;*&nbsp;</font><b>&nbsp;
{$lang['edit_comment']}</b></td>
    <td>
    <select name='allow_comments'>
    <option value='" 
htmlsafechars($row["allow_comments"]) . "'>" htmlsafechars($row["allow_comments"]) . "</option>
    <option value='yes'>Yes</option><option value='no'>No</option></select>
{$messc}</td></tr>\n"
I'm not naive, security is taken seriously on U-232 and I ain't no mug that does not understand its usage nor its importance, sure I'll have missed a odd one out of thousands but in general U-232 is tight. And thats not fool proof, experienced operators will gain access if they try hard enough, there's plenty out there trying on a daily basis =]

Last edited by Bigjoos; 22nd August 2015 at 18:46.
  #363  
Old 22nd August 2015, 19:56
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
Hint bro variables should never be used for echo print unless defined but that still is risky. If i am wrong i'll bow down and look back through my libary of life and tell you i was wrong. 98.7% I am correct though. I know you take security serious i just was passing over some info i learnt when i 15years old security and an idea.

I used this when i was 13yrs old but only wanted it to host so i could give out free html / css scripts. http://phorum.org learnt something unique about it once i found again on my birthday it is hackproof and bulletproof been round since 98 i believe the year after md5 was hacked.

If anyone truely cared about security would sha5() with double_check() not sha1, sha2, sha3, sha4 lol

Last edited by BamBam0077; 22nd August 2015 at 21:00.
  #364  
Old 13th May 2016, 14:32
Virginia25 Virginia25 is offline
Member
 
Join Date: May 2016
France
Posts: 5
Default error misconfiguration
Hello i have an error to project u232 v4

I have install https://github.com/Bigjoos/U-232-V4 on debian 7 wheezy
and therefore I can not have the installer

the error is
internal server error
The server encountered an internal error or misconfiguration and was unable to complete your request.

excuse me for my English but I'm French.

Why ?
  #365  
Old 13th May 2016, 16:19
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,242
Default
your server is not properly configured.
make sure you have module expires and module rewrite activated in apache2/nginx
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
  #366  
Old 13th May 2016, 18:42
Virginia25 Virginia25 is offline
Member
 
Join Date: May 2016
France
Posts: 5
Default
Or I can know if these files are enabled or not ?

virtualhost ?
  #367  
Old 13th May 2016, 18:50
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,242
Default
dont install trackers on shared hosting. best chances are wont work and you dont have administrator access to install what is required.
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
  #368  
Old 13th May 2016, 18:58
Virginia25 Virginia25 is offline
Member
 
Join Date: May 2016
France
Posts: 5
Default
im an administrator and login to root and i have install command etc....
and i have install first version of U232 no soucis but i'm search how to install V4 ?

Last edited by Virginia25; 13th May 2016 at 19:42.
  #369  
Old 13th May 2016, 19:42
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,242
Default
then use phpinfo in a file to see the information on your modules
or user a2enmod rewrite and a2enmod expires
then restart apache and voila
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
  #370  
Old 13th May 2016, 19:52
Virginia25 Virginia25 is offline
Member
 
Join Date: May 2016
France
Posts: 5
Default
thank you very much Dnd it's ok for rewrite and expire and i have access to installer thanks

Last edited by Virginia25; 13th May 2016 at 20:07.
Closed Thread

Tags
project , project u232 , torrents tracker , u232

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 23:59. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.